Autogenerated manpages for v2.47.0-rc0-18-ge9356b
[git-manpages.git] / man1 / git-filter-branch.1
blob436bd151933c4014fe4375612eeba46201c7e542
1 '\" t
2 .\"     Title: git-filter-branch
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-30
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc0.18.ge9356ba3ea
8 .\"  Language: English
9 .\"
10 .TH "GIT\-FILTER\-BRANCH" "1" "2024-09-30" "Git 2\&.47\&.0\&.rc0\&.18\&.ge" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-filter-branch \- Rewrite branches
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit filter\-branch\fR [\-\-setup <command>] [\-\-subdirectory\-filter <directory>]
36         [\-\-env\-filter <command>] [\-\-tree\-filter <command>]
37         [\-\-index\-filter <command>] [\-\-parent\-filter <command>]
38         [\-\-msg\-filter <command>] [\-\-commit\-filter <command>]
39         [\-\-tag\-name\-filter <command>] [\-\-prune\-empty]
40         [\-\-original <namespace>] [\-d <directory>] [\-f | \-\-force]
41         [\-\-state\-branch <branch>] [\-\-] [<rev\-list\-options>\&...\:]
42 .fi
43 .SH "WARNING"
44 .sp
45 \fIgit filter\-branch\fR has a plethora of pitfalls that can produce non\-obvious manglings of the intended history rewrite (and can leave you with little time to investigate such problems since it has such abysmal performance)\&. These safety and performance issues cannot be backward compatibly fixed and as such, its use is not recommended\&. Please use an alternative history filtering tool such as \m[blue]\fBgit filter\-repo\fR\m[]\&\s-2\u[1]\d\s+2\&. If you still need to use \fIgit filter\-branch\fR, please carefully read the section called \(lqSAFETY\(rq (and the section called \(lqPERFORMANCE\(rq) to learn about the land mines of filter\-branch, and then vigilantly avoid as many of the hazards listed there as reasonably possible\&.
46 .SH "DESCRIPTION"
47 .sp
48 Lets you rewrite Git revision history by rewriting the branches mentioned in the <rev\-list\-options>, applying custom filters on each revision\&. Those filters can modify each tree (e\&.g\&. removing a file or running a perl rewrite on all files) or information about each commit\&. Otherwise, all information (including original commit times or merge information) will be preserved\&.
49 .sp
50 The command will only rewrite the \fIpositive\fR refs mentioned in the command line (e\&.g\&. if you pass \fIa\&.\&.b\fR, only \fIb\fR will be rewritten)\&. If you specify no filters, the commits will be recommitted without any changes, which would normally have no effect\&. Nevertheless, this may be useful in the future for compensating for some Git bugs or such, therefore such a usage is permitted\&.
51 .sp
52 \fBNOTE\fR: This command honors \fB\&.git/info/grafts\fR file and refs in the \fBrefs/replace/\fR namespace\&. If you have any grafts or replacement refs defined, running this command will make them permanent\&.
53 .sp
54 \fBWARNING\fR! The rewritten history will have different object names for all the objects and will not converge with the original branch\&. You will not be able to easily push and distribute the rewritten branch on top of the original branch\&. Please do not use this command if you do not know the full implications, and avoid using it anyway, if a simple single commit would suffice to fix your problem\&. (See the "RECOVERING FROM UPSTREAM REBASE" section in \fBgit-rebase\fR(1) for further information about rewriting published history\&.)
55 .sp
56 Always verify that the rewritten version is correct: The original refs, if different from the rewritten ones, will be stored in the namespace \fIrefs/original/\fR\&.
57 .sp
58 Note that since this operation is very I/O expensive, it might be a good idea to redirect the temporary directory off\-disk with the \fB\-d\fR option, e\&.g\&. on tmpfs\&. Reportedly the speedup is very noticeable\&.
59 .SS "Filters"
60 .sp
61 The filters are applied in the order as listed below\&. The <command> argument is always evaluated in the shell context using the \fIeval\fR command (with the notable exception of the commit filter, for technical reasons)\&. Prior to that, the \fB$GIT_COMMIT\fR environment variable will be set to contain the id of the commit being rewritten\&. Also, GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, GIT_AUTHOR_DATE, GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL, and GIT_COMMITTER_DATE are taken from the current commit and exported to the environment, in order to affect the author and committer identities of the replacement commit created by \fBgit-commit-tree\fR(1) after the filters have run\&.
62 .sp
63 If any evaluation of <command> returns a non\-zero exit status, the whole operation will be aborted\&.
64 .sp
65 A \fImap\fR function is available that takes an "original sha1 id" argument and outputs a "rewritten sha1 id" if the commit has been already rewritten, and "original sha1 id" otherwise; the \fImap\fR function can return several ids on separate lines if your commit filter emitted multiple commits\&.
66 .SH "OPTIONS"
67 .PP
68 \-\-setup <command>
69 .RS 4
70 This is not a real filter executed for each commit but a one time setup just before the loop\&. Therefore no commit\-specific variables are defined yet\&. Functions or variables defined here can be used or modified in the following filter steps except the commit filter, for technical reasons\&.
71 .RE
72 .PP
73 \-\-subdirectory\-filter <directory>
74 .RS 4
75 Only look at the history which touches the given subdirectory\&. The result will contain that directory (and only that) as its project root\&. Implies
76 the section called \(lqRemap to ancestor\(rq\&.
77 .RE
78 .PP
79 \-\-env\-filter <command>
80 .RS 4
81 This filter may be used if you only need to modify the environment in which the commit will be performed\&. Specifically, you might want to rewrite the author/committer name/email/time environment variables (see
82 \fBgit-commit-tree\fR(1)
83 for details)\&.
84 .RE
85 .PP
86 \-\-tree\-filter <command>
87 .RS 4
88 This is the filter for rewriting the tree and its contents\&. The argument is evaluated in shell with the working directory set to the root of the checked out tree\&. The new tree is then used as\-is (new files are auto\-added, disappeared files are auto\-removed \- neither \&.gitignore files nor any other ignore rules
89 \fBHAVE ANY EFFECT\fR!)\&.
90 .RE
91 .PP
92 \-\-index\-filter <command>
93 .RS 4
94 This is the filter for rewriting the index\&. It is similar to the tree filter but does not check out the tree, which makes it much faster\&. Frequently used with
95 \fBgit rm \-\-cached \-\-ignore\-unmatch \&.\&.\&.\fR, see EXAMPLES below\&. For hairy cases, see
96 \fBgit-update-index\fR(1)\&.
97 .RE
98 .PP
99 \-\-parent\-filter <command>
100 .RS 4
101 This is the filter for rewriting the commit\(cqs parent list\&. It will receive the parent string on stdin and shall output the new parent string on stdout\&. The parent string is in the format described in
102 \fBgit-commit-tree\fR(1): empty for the initial commit, "\-p parent" for a normal commit and "\-p parent1 \-p parent2 \-p parent3 \&...\:" for a merge commit\&.
105 \-\-msg\-filter <command>
106 .RS 4
107 This is the filter for rewriting the commit messages\&. The argument is evaluated in the shell with the original commit message on standard input; its standard output is used as the new commit message\&.
110 \-\-commit\-filter <command>
111 .RS 4
112 This is the filter for performing the commit\&. If this filter is specified, it will be called instead of the
113 \fIgit commit\-tree\fR
114 command, with arguments of the form "<TREE_ID> [(\-p <PARENT_COMMIT_ID>)\&...\:]" and the log message on stdin\&. The commit id is expected on stdout\&.
116 As a special extension, the commit filter may emit multiple commit ids; in that case, the rewritten children of the original commit will have all of them as parents\&.
118 You can use the
119 \fImap\fR
120 convenience function in this filter, and other convenience functions, too\&. For example, calling
121 \fIskip_commit "$@"\fR
122 will leave out the current commit (but not its changes! If you want that, use
123 \fIgit rebase\fR
124 instead)\&.
126 You can also use the
127 \fBgit_commit_non_empty_tree "$@"\fR
128 instead of
129 \fBgit commit\-tree "$@"\fR
130 if you don\(cqt wish to keep commits with a single parent and that makes no change to the tree\&.
133 \-\-tag\-name\-filter <command>
134 .RS 4
135 This is the filter for rewriting tag names\&. When passed, it will be called for every tag ref that points to a rewritten object (or to a tag object which points to a rewritten object)\&. The original tag name is passed via standard input, and the new tag name is expected on standard output\&.
137 The original tags are not deleted, but can be overwritten; use "\-\-tag\-name\-filter cat" to simply update the tags\&. In this case, be very careful and make sure you have the old tags backed up in case the conversion has run afoul\&.
139 Nearly proper rewriting of tag objects is supported\&. If the tag has a message attached, a new tag object will be created with the same message, author, and timestamp\&. If the tag has a signature attached, the signature will be stripped\&. It is by definition impossible to preserve signatures\&. The reason this is "nearly" proper, is because ideally if the tag did not change (points to the same object, has the same name, etc\&.) it should retain any signature\&. That is not the case, signatures will always be removed, buyer beware\&. There is also no support for changing the author or timestamp (or the tag message for that matter)\&. Tags which point to other tags will be rewritten to point to the underlying commit\&.
142 \-\-prune\-empty
143 .RS 4
144 Some filters will generate empty commits that leave the tree untouched\&. This option instructs git\-filter\-branch to remove such commits if they have exactly one or zero non\-pruned parents; merge commits will therefore remain intact\&. This option cannot be used together with
145 \fB\-\-commit\-filter\fR, though the same effect can be achieved by using the provided
146 \fBgit_commit_non_empty_tree\fR
147 function in a commit filter\&.
150 \-\-original <namespace>
151 .RS 4
152 Use this option to set the namespace where the original commits will be stored\&. The default value is
153 \fIrefs/original\fR\&.
156 \-d <directory>
157 .RS 4
158 Use this option to set the path to the temporary directory used for rewriting\&. When applying a tree filter, the command needs to temporarily check out the tree to some directory, which may consume considerable space in case of large projects\&. By default it does this in the
159 \fB\&.git\-rewrite/\fR
160 directory but you can override that choice by this parameter\&.
163 \-f, \-\-force
164 .RS 4
165 \fIgit filter\-branch\fR
166 refuses to start with an existing temporary directory or when there are already refs starting with
167 \fIrefs/original/\fR, unless forced\&.
170 \-\-state\-branch <branch>
171 .RS 4
172 This option will cause the mapping from old to new objects to be loaded from named branch upon startup and saved as a new commit to that branch upon exit, enabling incremental of large trees\&. If
173 \fI<branch>\fR
174 does not exist it will be created\&.
177 <rev\-list options>\&...\:
178 .RS 4
179 Arguments for
180 \fIgit rev\-list\fR\&. All positive refs included by these options are rewritten\&. You may also specify options such as
181 \fB\-\-all\fR, but you must use
182 \fB\-\-\fR
183 to separate them from the
184 \fIgit filter\-branch\fR
185 options\&. Implies
186 the section called \(lqRemap to ancestor\(rq\&.
188 .SS "Remap to ancestor"
190 By using \fBgit-rev-list\fR(1) arguments, e\&.g\&., path limiters, you can limit the set of revisions which get rewritten\&. However, positive refs on the command line are distinguished: we don\(cqt let them be excluded by such limiters\&. For this purpose, they are instead rewritten to point at the nearest ancestor that was not excluded\&.
191 .SH "EXIT STATUS"
193 On success, the exit status is \fB0\fR\&. If the filter can\(cqt find any commits to rewrite, the exit status is \fB2\fR\&. On any other error, the exit status may be any other non\-zero value\&.
194 .SH "EXAMPLES"
196 Suppose you want to remove a file (containing confidential information or copyright violation) from all commits:
198 .if n \{\
199 .RS 4
202 git filter\-branch \-\-tree\-filter \*(Aqrm filename\*(Aq HEAD
204 .if n \{\
208 However, if the file is absent from the tree of some commit, a simple \fBrm filename\fR will fail for that tree and commit\&. Thus you may instead want to use \fBrm \-f filename\fR as the script\&.
210 Using \fB\-\-index\-filter\fR with \fIgit rm\fR yields a significantly faster version\&. Like with using \fBrm filename\fR, \fBgit rm \-\-cached filename\fR will fail if the file is absent from the tree of a commit\&. If you want to "completely forget" a file, it does not matter when it entered history, so we also add \fB\-\-ignore\-unmatch\fR:
212 .if n \{\
213 .RS 4
216 git filter\-branch \-\-index\-filter \*(Aqgit rm \-\-cached \-\-ignore\-unmatch filename\*(Aq HEAD
218 .if n \{\
222 Now, you will get the rewritten history saved in HEAD\&.
224 To rewrite the repository to look as if \fBfoodir/\fR had been its project root, and discard all other history:
226 .if n \{\
227 .RS 4
230 git filter\-branch \-\-subdirectory\-filter foodir \-\- \-\-all
232 .if n \{\
236 Thus you can, e\&.g\&., turn a library subdirectory into a repository of its own\&. Note the \fB\-\-\fR that separates \fIfilter\-branch\fR options from revision options, and the \fB\-\-all\fR to rewrite all branches and tags\&.
238 To set a commit (which typically is at the tip of another history) to be the parent of the current initial commit, in order to paste the other history behind the current history:
240 .if n \{\
241 .RS 4
244 git filter\-branch \-\-parent\-filter \*(Aqsed "s/^\e$/\-p <graft\-id>/"\*(Aq HEAD
246 .if n \{\
250 (if the parent string is empty \- which happens when we are dealing with the initial commit \- add graftcommit as a parent)\&. Note that this assumes history with a single root (that is, no merge without common ancestors happened)\&. If this is not the case, use:
252 .if n \{\
253 .RS 4
256 git filter\-branch \-\-parent\-filter \e
257         \*(Aqtest $GIT_COMMIT = <commit\-id> && echo "\-p <graft\-id>" || cat\*(Aq HEAD
259 .if n \{\
263 or even simpler:
265 .if n \{\
266 .RS 4
269 git replace \-\-graft $commit\-id $graft\-id
270 git filter\-branch $graft\-id\&.\&.HEAD
272 .if n \{\
276 To remove commits authored by "Darl McBribe" from the history:
278 .if n \{\
279 .RS 4
282 git filter\-branch \-\-commit\-filter \*(Aq
283         if [ "$GIT_AUTHOR_NAME" = "Darl McBribe" ];
284         then
285                 skip_commit "$@";
286         else
287                 git commit\-tree "$@";
288         fi\*(Aq HEAD
290 .if n \{\
294 The function \fIskip_commit\fR is defined as follows:
296 .if n \{\
297 .RS 4
300 skip_commit()
302         shift;
303         while [ \-n "$1" ];
304         do
305                 shift;
306                 map "$1";
307                 shift;
308         done;
311 .if n \{\
315 The shift magic first throws away the tree id and then the \-p parameters\&. Note that this handles merges properly! In case Darl committed a merge between P1 and P2, it will be propagated properly and all children of the merge will become merge commits with P1,P2 as their parents instead of the merge commit\&.
317 \fBNOTE\fR the changes introduced by the commits, and which are not reverted by subsequent commits, will still be in the rewritten branch\&. If you want to throw out \fIchanges\fR together with the commits, you should use the interactive mode of \fIgit rebase\fR\&.
319 You can rewrite the commit log messages using \fB\-\-msg\-filter\fR\&. For example, \fIgit svn\-id\fR strings in a repository created by \fIgit svn\fR can be removed this way:
321 .if n \{\
322 .RS 4
325 git filter\-branch \-\-msg\-filter \*(Aq
326         sed \-e "/^git\-svn\-id:/d"
327 \*(Aq
329 .if n \{\
333 If you need to add \fIAcked\-by\fR lines to, say, the last 10 commits (none of which is a merge), use this command:
335 .if n \{\
336 .RS 4
339 git filter\-branch \-\-msg\-filter \*(Aq
340         cat &&
341         echo "Acked\-by: Bugs Bunny <bunny@bugzilla\&.org>"
342 \*(Aq HEAD~10\&.\&.HEAD
344 .if n \{\
348 The \fB\-\-env\-filter\fR option can be used to modify committer and/or author identity\&. For example, if you found out that your commits have the wrong identity due to a misconfigured user\&.email, you can make a correction, before publishing the project, like this:
350 .if n \{\
351 .RS 4
354 git filter\-branch \-\-env\-filter \*(Aq
355         if test "$GIT_AUTHOR_EMAIL" = "root@localhost"
356         then
357                 GIT_AUTHOR_EMAIL=john@example\&.com
358         fi
359         if test "$GIT_COMMITTER_EMAIL" = "root@localhost"
360         then
361                 GIT_COMMITTER_EMAIL=john@example\&.com
362         fi
363 \*(Aq \-\- \-\-all
365 .if n \{\
369 To restrict rewriting to only part of the history, specify a revision range in addition to the new branch name\&. The new branch name will point to the top\-most revision that a \fIgit rev\-list\fR of this range will print\&.
371 Consider this history:
373 .if n \{\
374 .RS 4
377      D\-\-E\-\-F\-\-G\-\-H
378     /     /
379 A\-\-B\-\-\-\-\-C
381 .if n \{\
385 To rewrite only commits D,E,F,G,H, but leave A, B and C alone, use:
387 .if n \{\
388 .RS 4
391 git filter\-branch \&.\&.\&. C\&.\&.H
393 .if n \{\
397 To rewrite commits E,F,G,H, use one of these:
399 .if n \{\
400 .RS 4
403 git filter\-branch \&.\&.\&. C\&.\&.H \-\-not D
404 git filter\-branch \&.\&.\&. D\&.\&.H \-\-not C
406 .if n \{\
410 To move the whole tree into a subdirectory, or remove it from there:
412 .if n \{\
413 .RS 4
416 git filter\-branch \-\-index\-filter \e
417         \*(Aqgit ls\-files \-s | sed "s\-\et\e"*\-&newsubdir/\-" |
418                 GIT_INDEX_FILE=$GIT_INDEX_FILE\&.new \e
419                         git update\-index \-\-index\-info &&
420          mv "$GIT_INDEX_FILE\&.new" "$GIT_INDEX_FILE"\*(Aq HEAD
422 .if n \{\
425 .SH "CHECKLIST FOR SHRINKING A REPOSITORY"
427 git\-filter\-branch can be used to get rid of a subset of files, usually with some combination of \fB\-\-index\-filter\fR and \fB\-\-subdirectory\-filter\fR\&. People expect the resulting repository to be smaller than the original, but you need a few more steps to actually make it smaller, because Git tries hard not to lose your objects until you tell it to\&. First make sure that:
429 .RS 4
430 .ie n \{\
431 \h'-04'\(bu\h'+03'\c
433 .el \{\
434 .sp -1
435 .IP \(bu 2.3
437 You really removed all variants of a filename, if a blob was moved over its lifetime\&.
438 \fBgit log \-\-name\-only \-\-follow \-\-all \-\- filename\fR
439 can help you find renames\&.
442 .RS 4
443 .ie n \{\
444 \h'-04'\(bu\h'+03'\c
446 .el \{\
447 .sp -1
448 .IP \(bu 2.3
450 You really filtered all refs: use
451 \fB\-\-tag\-name\-filter cat \-\- \-\-all\fR
452 when calling git\-filter\-branch\&.
455 Then there are two ways to get a smaller repository\&. A safer way is to clone, that keeps your original intact\&.
457 .RS 4
458 .ie n \{\
459 \h'-04'\(bu\h'+03'\c
461 .el \{\
462 .sp -1
463 .IP \(bu 2.3
465 Clone it with
466 \fBgit clone file:///path/to/repo\fR\&. The clone will not have the removed objects\&. See
467 \fBgit-clone\fR(1)\&. (Note that cloning with a plain path just hardlinks everything!)
470 If you really don\(cqt want to clone it, for whatever reasons, check the following points instead (in this order)\&. This is a very destructive approach, so \fBmake a backup\fR or go back to cloning it\&. You have been warned\&.
472 .RS 4
473 .ie n \{\
474 \h'-04'\(bu\h'+03'\c
476 .el \{\
477 .sp -1
478 .IP \(bu 2.3
480 Remove the original refs backed up by git\-filter\-branch: say
481 \fBgit for\-each\-ref \-\-format="%(refname)" refs/original/ | xargs \-n 1 git update\-ref \-d\fR\&.
484 .RS 4
485 .ie n \{\
486 \h'-04'\(bu\h'+03'\c
488 .el \{\
489 .sp -1
490 .IP \(bu 2.3
492 Expire all reflogs with
493 \fBgit reflog expire \-\-expire=now \-\-all\fR\&.
496 .RS 4
497 .ie n \{\
498 \h'-04'\(bu\h'+03'\c
500 .el \{\
501 .sp -1
502 .IP \(bu 2.3
504 Garbage collect all unreferenced objects with
505 \fBgit gc \-\-prune=now\fR
506 (or if your git\-gc is not new enough to support arguments to
507 \fB\-\-prune\fR, use
508 \fBgit repack \-ad; git prune\fR
509 instead)\&.
511 .SH "PERFORMANCE"
513 The performance of git\-filter\-branch is glacially slow; its design makes it impossible for a backward\-compatible implementation to ever be fast:
515 .RS 4
516 .ie n \{\
517 \h'-04'\(bu\h'+03'\c
519 .el \{\
520 .sp -1
521 .IP \(bu 2.3
523 In editing files, git\-filter\-branch by design checks out each and every commit as it existed in the original repo\&. If your repo has
524 \fB10^5\fR
525 files and
526 \fB10^5\fR
527 commits, but each commit only modifies five files, then git\-filter\-branch will make you do
528 \fB10^10\fR
529 modifications, despite only having (at most)
530 \fB5*10^5\fR
531 unique blobs\&.
534 .RS 4
535 .ie n \{\
536 \h'-04'\(bu\h'+03'\c
538 .el \{\
539 .sp -1
540 .IP \(bu 2.3
542 If you try and cheat and try to make git\-filter\-branch only work on files modified in a commit, then two things happen
544 .RS 4
545 .ie n \{\
546 \h'-04'\(bu\h'+03'\c
548 .el \{\
549 .sp -1
550 .IP \(bu 2.3
552 you run into problems with deletions whenever the user is simply trying to rename files (because attempting to delete files that don\(cqt exist looks like a no\-op; it takes some chicanery to remap deletes across file renames when the renames happen via arbitrary user\-provided shell)
555 .RS 4
556 .ie n \{\
557 \h'-04'\(bu\h'+03'\c
559 .el \{\
560 .sp -1
561 .IP \(bu 2.3
563 even if you succeed at the map\-deletes\-for\-renames chicanery, you still technically violate backward compatibility because users are allowed to filter files in ways that depend upon topology of commits instead of filtering solely based on file contents or names (though this has not been observed in the wild)\&.
567 .RS 4
568 .ie n \{\
569 \h'-04'\(bu\h'+03'\c
571 .el \{\
572 .sp -1
573 .IP \(bu 2.3
575 Even if you don\(cqt need to edit files but only want to e\&.g\&. rename or remove some and thus can avoid checking out each file (i\&.e\&. you can use \-\-index\-filter), you still are passing shell snippets for your filters\&. This means that for every commit, you have to have a prepared git repo where those filters can be run\&. That\(cqs a significant setup\&.
578 .RS 4
579 .ie n \{\
580 \h'-04'\(bu\h'+03'\c
582 .el \{\
583 .sp -1
584 .IP \(bu 2.3
586 Further, several additional files are created or updated per commit by git\-filter\-branch\&. Some of these are for supporting the convenience functions provided by git\-filter\-branch (such as map()), while others are for keeping track of internal state (but could have also been accessed by user filters; one of git\-filter\-branch\(cqs regression tests does so)\&. This essentially amounts to using the filesystem as an IPC mechanism between git\-filter\-branch and the user\-provided filters\&. Disks tend to be a slow IPC mechanism, and writing these files also effectively represents a forced synchronization point between separate processes that we hit with every commit\&.
589 .RS 4
590 .ie n \{\
591 \h'-04'\(bu\h'+03'\c
593 .el \{\
594 .sp -1
595 .IP \(bu 2.3
597 The user\-provided shell commands will likely involve a pipeline of commands, resulting in the creation of many processes per commit\&. Creating and running another process takes a widely varying amount of time between operating systems, but on any platform it is very slow relative to invoking a function\&.
600 .RS 4
601 .ie n \{\
602 \h'-04'\(bu\h'+03'\c
604 .el \{\
605 .sp -1
606 .IP \(bu 2.3
608 git\-filter\-branch itself is written in shell, which is kind of slow\&. This is the one performance issue that could be backward\-compatibly fixed, but compared to the above problems that are intrinsic to the design of git\-filter\-branch, the language of the tool itself is a relatively minor issue\&.
610 .RS 4
611 .ie n \{\
612 \h'-04'\(bu\h'+03'\c
614 .el \{\
615 .sp -1
616 .IP \(bu 2.3
618 Side note: Unfortunately, people tend to fixate on the written\-in\-shell aspect and periodically ask if git\-filter\-branch could be rewritten in another language to fix the performance issues\&. Not only does that ignore the bigger intrinsic problems with the design, it\(cqd help less than you\(cqd expect: if git\-filter\-branch itself were not shell, then the convenience functions (map(), skip_commit(), etc) and the
619 \fB\-\-setup\fR
620 argument could no longer be executed once at the beginning of the program but would instead need to be prepended to every user filter (and thus re\-executed with every commit)\&.
624 The \m[blue]\fBgit filter\-repo\fR\m[]\&\s-2\u[1]\d\s+2 tool is an alternative to git\-filter\-branch which does not suffer from these performance problems or the safety problems (mentioned below)\&. For those with existing tooling which relies upon git\-filter\-branch, \fIgit filter\-repo\fR also provides \m[blue]\fBfilter\-lamely\fR\m[]\&\s-2\u[2]\d\s+2, a drop\-in git\-filter\-branch replacement (with a few caveats)\&. While filter\-lamely suffers from all the same safety issues as git\-filter\-branch, it at least ameliorates the performance issues a little\&.
625 .SH "SAFETY"
627 git\-filter\-branch is riddled with gotchas resulting in various ways to easily corrupt repos or end up with a mess worse than what you started with:
629 .RS 4
630 .ie n \{\
631 \h'-04'\(bu\h'+03'\c
633 .el \{\
634 .sp -1
635 .IP \(bu 2.3
637 Someone can have a set of "working and tested filters" which they document or provide to a coworker, who then runs them on a different OS where the same commands are not working/tested (some examples in the git\-filter\-branch manpage are also affected by this)\&. BSD vs\&. GNU userland differences can really bite\&. If lucky, error messages are spewed\&. But just as likely, the commands either don\(cqt do the filtering requested, or silently corrupt by making some unwanted change\&. The unwanted change may only affect a few commits, so it\(cqs not necessarily obvious either\&. (The fact that problems won\(cqt necessarily be obvious means they are likely to go unnoticed until the rewritten history is in use for quite a while, at which point it\(cqs really hard to justify another flag\-day for another rewrite\&.)
640 .RS 4
641 .ie n \{\
642 \h'-04'\(bu\h'+03'\c
644 .el \{\
645 .sp -1
646 .IP \(bu 2.3
648 Filenames with spaces are often mishandled by shell snippets since they cause problems for shell pipelines\&. Not everyone is familiar with find \-print0, xargs \-0, git\-ls\-files \-z, etc\&. Even people who are familiar with these may assume such flags are not relevant because someone else renamed any such files in their repo back before the person doing the filtering joined the project\&. And often, even those familiar with handling arguments with spaces may not do so just because they aren\(cqt in the mindset of thinking about everything that could possibly go wrong\&.
651 .RS 4
652 .ie n \{\
653 \h'-04'\(bu\h'+03'\c
655 .el \{\
656 .sp -1
657 .IP \(bu 2.3
659 Non\-ascii filenames can be silently removed despite being in a desired directory\&. Keeping only wanted paths is often done using pipelines like
660 \fBgit ls\-files | grep \-v ^WANTED_DIR/ | xargs git rm\fR\&. ls\-files will only quote filenames if needed, so folks may not notice that one of the files didn\(cqt match the regex (at least not until it\(cqs much too late)\&. Yes, someone who knows about core\&.quotePath can avoid this (unless they have other special characters like \et, \en, or "), and people who use ls\-files \-z with something other than grep can avoid this, but that doesn\(cqt mean they will\&.
663 .RS 4
664 .ie n \{\
665 \h'-04'\(bu\h'+03'\c
667 .el \{\
668 .sp -1
669 .IP \(bu 2.3
671 Similarly, when moving files around, one can find that filenames with non\-ascii or special characters end up in a different directory, one that includes a double quote character\&. (This is technically the same issue as above with quoting, but perhaps an interesting different way that it can and has manifested as a problem\&.)
674 .RS 4
675 .ie n \{\
676 \h'-04'\(bu\h'+03'\c
678 .el \{\
679 .sp -1
680 .IP \(bu 2.3
682 It\(cqs far too easy to accidentally mix up old and new history\&. It\(cqs still possible with any tool, but git\-filter\-branch almost invites it\&. If lucky, the only downside is users getting frustrated that they don\(cqt know how to shrink their repo and remove the old stuff\&. If unlucky, they merge old and new history and end up with multiple "copies" of each commit, some of which have unwanted or sensitive files and others which don\(cqt\&. This comes about in multiple different ways:
684 .RS 4
685 .ie n \{\
686 \h'-04'\(bu\h'+03'\c
688 .el \{\
689 .sp -1
690 .IP \(bu 2.3
692 the default to only doing a partial history rewrite (\fI\-\-all\fR
693 is not the default and few examples show it)
696 .RS 4
697 .ie n \{\
698 \h'-04'\(bu\h'+03'\c
700 .el \{\
701 .sp -1
702 .IP \(bu 2.3
704 the fact that there\(cqs no automatic post\-run cleanup
707 .RS 4
708 .ie n \{\
709 \h'-04'\(bu\h'+03'\c
711 .el \{\
712 .sp -1
713 .IP \(bu 2.3
715 the fact that \-\-tag\-name\-filter (when used to rename tags) doesn\(cqt remove the old tags but just adds new ones with the new name
718 .RS 4
719 .ie n \{\
720 \h'-04'\(bu\h'+03'\c
722 .el \{\
723 .sp -1
724 .IP \(bu 2.3
726 the fact that little educational information is provided to inform users of the ramifications of a rewrite and how to avoid mixing old and new history\&. For example, this man page discusses how users need to understand that they need to rebase their changes for all their branches on top of new history (or delete and reclone), but that\(cqs only one of multiple concerns to consider\&. See the "DISCUSSION" section of the git filter\-repo manual page for more details\&.
730 .RS 4
731 .ie n \{\
732 \h'-04'\(bu\h'+03'\c
734 .el \{\
735 .sp -1
736 .IP \(bu 2.3
738 Annotated tags can be accidentally converted to lightweight tags, due to either of two issues:
740 .RS 4
741 .ie n \{\
742 \h'-04'\(bu\h'+03'\c
744 .el \{\
745 .sp -1
746 .IP \(bu 2.3
748 Someone can do a history rewrite, realize they messed up, restore from the backups in refs/original/, and then redo their git\-filter\-branch command\&. (The backup in refs/original/ is not a real backup; it dereferences tags first\&.)
751 .RS 4
752 .ie n \{\
753 \h'-04'\(bu\h'+03'\c
755 .el \{\
756 .sp -1
757 .IP \(bu 2.3
759 Running git\-filter\-branch with either \-\-tags or \-\-all in your <rev\-list\-options>\&. In order to retain annotated tags as annotated, you must use \-\-tag\-name\-filter (and must not have restored from refs/original/ in a previously botched rewrite)\&.
763 .RS 4
764 .ie n \{\
765 \h'-04'\(bu\h'+03'\c
767 .el \{\
768 .sp -1
769 .IP \(bu 2.3
771 Any commit messages that specify an encoding will become corrupted by the rewrite; git\-filter\-branch ignores the encoding, takes the original bytes, and feeds it to commit\-tree without telling it the proper encoding\&. (This happens whether or not \-\-msg\-filter is used\&.)
774 .RS 4
775 .ie n \{\
776 \h'-04'\(bu\h'+03'\c
778 .el \{\
779 .sp -1
780 .IP \(bu 2.3
782 Commit messages (even if they are all UTF\-8) by default become corrupted due to not being updated \(em any references to other commit hashes in commit messages will now refer to no\-longer\-extant commits\&.
785 .RS 4
786 .ie n \{\
787 \h'-04'\(bu\h'+03'\c
789 .el \{\
790 .sp -1
791 .IP \(bu 2.3
793 There are no facilities for helping users find what unwanted crud they should delete, which means they are much more likely to have incomplete or partial cleanups that sometimes result in confusion and people wasting time trying to understand\&. (For example, folks tend to just look for big files to delete instead of big directories or extensions, and once they do so, then sometime later folks using the new repository who are going through history will notice a build artifact directory that has some files but not others, or a cache of dependencies (node_modules or similar) which couldn\(cqt have ever been functional since it\(cqs missing some files\&.)
796 .RS 4
797 .ie n \{\
798 \h'-04'\(bu\h'+03'\c
800 .el \{\
801 .sp -1
802 .IP \(bu 2.3
804 If \-\-prune\-empty isn\(cqt specified, then the filtering process can create hoards of confusing empty commits
807 .RS 4
808 .ie n \{\
809 \h'-04'\(bu\h'+03'\c
811 .el \{\
812 .sp -1
813 .IP \(bu 2.3
815 If \-\-prune\-empty is specified, then intentionally placed empty commits from before the filtering operation are also pruned instead of just pruning commits that became empty due to filtering rules\&.
818 .RS 4
819 .ie n \{\
820 \h'-04'\(bu\h'+03'\c
822 .el \{\
823 .sp -1
824 .IP \(bu 2.3
826 If \-\-prune\-empty is specified, sometimes empty commits are missed and left around anyway (a somewhat rare bug, but it happens\&...\:)
829 .RS 4
830 .ie n \{\
831 \h'-04'\(bu\h'+03'\c
833 .el \{\
834 .sp -1
835 .IP \(bu 2.3
837 A minor issue, but users who have a goal to update all names and emails in a repository may be led to \-\-env\-filter which will only update authors and committers, missing taggers\&.
840 .RS 4
841 .ie n \{\
842 \h'-04'\(bu\h'+03'\c
844 .el \{\
845 .sp -1
846 .IP \(bu 2.3
848 If the user provides a \-\-tag\-name\-filter that maps multiple tags to the same name, no warning or error is provided; git\-filter\-branch simply overwrites each tag in some undocumented pre\-defined order resulting in only one tag at the end\&. (A git\-filter\-branch regression test requires this surprising behavior\&.)
851 Also, the poor performance of git\-filter\-branch often leads to safety issues:
853 .RS 4
854 .ie n \{\
855 \h'-04'\(bu\h'+03'\c
857 .el \{\
858 .sp -1
859 .IP \(bu 2.3
861 Coming up with the correct shell snippet to do the filtering you want is sometimes difficult unless you\(cqre just doing a trivial modification such as deleting a couple files\&. Unfortunately, people often learn if the snippet is right or wrong by trying it out, but the rightness or wrongness can vary depending on special circumstances (spaces in filenames, non\-ascii filenames, funny author names or emails, invalid timezones, presence of grafts or replace objects, etc\&.), meaning they may have to wait a long time, hit an error, then restart\&. The performance of git\-filter\-branch is so bad that this cycle is painful, reducing the time available to carefully re\-check (to say nothing about what it does to the patience of the person doing the rewrite even if they do technically have more time available)\&. This problem is extra compounded because errors from broken filters may not be shown for a long time and/or get lost in a sea of output\&. Even worse, broken filters often just result in silent incorrect rewrites\&.
864 .RS 4
865 .ie n \{\
866 \h'-04'\(bu\h'+03'\c
868 .el \{\
869 .sp -1
870 .IP \(bu 2.3
872 To top it all off, even when users finally find working commands, they naturally want to share them\&. But they may be unaware that their repo didn\(cqt have some special cases that someone else\(cqs does\&. So, when someone else with a different repository runs the same commands, they get hit by the problems above\&. Or, the user just runs commands that really were vetted for special cases, but they run it on a different OS where it doesn\(cqt work, as noted above\&.
874 .SH "GIT"
876 Part of the \fBgit\fR(1) suite
877 .SH "NOTES"
878 .IP " 1." 4
879 git filter-repo
880 .RS 4
881 \%https://github.com/newren/git-filter-repo/
883 .IP " 2." 4
884 filter-lamely
885 .RS 4
886 \%https://github.com/newren/git-filter-repo/blob/master/contrib/filter-repo-demos/filter-lamely