2007-07-04 03:41:55 +04:00
|
|
|
git-filter-branch(1)
|
|
|
|
====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-filter-branch - Rewrite branches
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2017-10-17 12:45:15 +03:00
|
|
|
'git filter-branch' [--setup <command>] [--subdirectory-filter <directory>]
|
|
|
|
[--env-filter <command>] [--tree-filter <command>]
|
|
|
|
[--index-filter <command>] [--parent-filter <command>]
|
|
|
|
[--msg-filter <command>] [--commit-filter <command>]
|
|
|
|
[--tag-name-filter <command>] [--prune-empty]
|
2007-08-30 21:10:42 +04:00
|
|
|
[--original <namespace>] [-d <directory>] [-f | --force]
|
2017-09-21 10:49:31 +03:00
|
|
|
[--state-branch <branch>] [--] [<rev-list options>...]
|
2007-07-04 03:41:55 +04:00
|
|
|
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
WARNING
|
|
|
|
-------
|
|
|
|
'git filter-branch' 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 https://github.com/newren/git-filter-repo/[git
|
|
|
|
filter-repo]. If you still need to use 'git filter-branch', please
|
|
|
|
carefully read <<SAFETY>> (and <<PERFORMANCE>>) to learn about the land
|
|
|
|
mines of filter-branch, and then vigilantly avoid as many of the hazards
|
|
|
|
listed there as reasonably possible.
|
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2013-01-21 23:17:53 +04:00
|
|
|
Lets you rewrite Git revision history by rewriting the branches mentioned
|
2007-08-31 20:42:33 +04:00
|
|
|
in the <rev-list options>, applying custom filters on each revision.
|
2007-07-04 03:41:55 +04:00
|
|
|
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.
|
|
|
|
|
2007-08-31 20:42:33 +04:00
|
|
|
The command will only rewrite the _positive_ refs mentioned in the
|
2008-03-21 00:30:32 +03:00
|
|
|
command line (e.g. if you pass 'a..b', only 'b' will be rewritten).
|
2007-08-31 20:42:33 +04:00
|
|
|
If you specify no filters, the commits will be recommitted without any
|
|
|
|
changes, which would normally have no effect. Nevertheless, this may be
|
2013-01-21 23:17:53 +04:00
|
|
|
useful in the future for compensating for some Git bugs or such,
|
2007-08-31 20:42:33 +04:00
|
|
|
therefore such a usage is permitted.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2012-08-07 00:36:47 +04:00
|
|
|
*NOTE*: This command honors `.git/info/grafts` file and refs in
|
|
|
|
the `refs/replace/` namespace.
|
2011-07-21 19:10:52 +04:00
|
|
|
If you have any grafts or replacement refs defined, running this command
|
|
|
|
will make them permanent.
|
2009-04-10 10:26:49 +04:00
|
|
|
|
2007-07-04 18:50:45 +04:00
|
|
|
*WARNING*! The rewritten history will have different object names for all
|
2007-07-04 03:41:55 +04:00
|
|
|
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
|
2008-09-13 20:11:01 +04:00
|
|
|
would suffice to fix your problem. (See the "RECOVERING FROM UPSTREAM
|
|
|
|
REBASE" section in linkgit:git-rebase[1] for further information about
|
|
|
|
rewriting published history.)
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-07-23 21:34:13 +04:00
|
|
|
Always verify that the rewritten version is correct: The original refs,
|
|
|
|
if different from the rewritten ones, will be stored in the namespace
|
|
|
|
'refs/original/'.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2008-03-21 00:30:32 +03:00
|
|
|
Note that since this operation is very I/O expensive, it might
|
2007-08-31 20:42:33 +04:00
|
|
|
be a good idea to redirect the temporary directory off-disk with the
|
2016-06-28 14:40:10 +03:00
|
|
|
`-d` option, e.g. on tmpfs. Reportedly the speedup is very noticeable.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
Filters
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
The filters are applied in the order as listed below. The <command>
|
2008-03-21 00:30:32 +03:00
|
|
|
argument is always evaluated in the shell context using the 'eval' command
|
|
|
|
(with the notable exception of the commit filter, for technical reasons).
|
2016-06-08 01:35:07 +03:00
|
|
|
Prior to that, the `$GIT_COMMIT` environment variable will be set to contain
|
2007-07-04 03:41:55 +04:00
|
|
|
the id of the commit being rewritten. Also, GIT_AUTHOR_NAME,
|
|
|
|
GIT_AUTHOR_EMAIL, GIT_AUTHOR_DATE, GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL,
|
2013-02-22 00:22:50 +04:00
|
|
|
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 linkgit:git-commit-tree[1] after the
|
|
|
|
filters have run.
|
|
|
|
|
2008-03-21 00:30:32 +03:00
|
|
|
If any evaluation of <command> returns a non-zero exit status, the whole
|
|
|
|
operation will be aborted.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
A 'map' function is available that takes an "original sha1 id" argument
|
|
|
|
and outputs a "rewritten sha1 id" if the commit has been already
|
2007-07-04 11:32:47 +04:00
|
|
|
rewritten, and "original sha1 id" otherwise; the 'map' function can
|
|
|
|
return several ids on separate lines if your commit filter emitted
|
|
|
|
multiple commits.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2017-06-10 11:54:44 +03:00
|
|
|
--setup <command>::
|
|
|
|
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.
|
|
|
|
|
2017-10-17 12:45:15 +03:00
|
|
|
--subdirectory-filter <directory>::
|
|
|
|
Only look at the history which touches the given subdirectory.
|
|
|
|
The result will contain that directory (and only that) as its
|
|
|
|
project root. Implies <<Remap_to_ancestor>>.
|
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
--env-filter <command>::
|
2008-03-21 00:30:32 +03:00
|
|
|
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
|
2017-05-26 20:36:54 +03:00
|
|
|
variables (see linkgit:git-commit-tree[1] for details).
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
--tree-filter <command>::
|
|
|
|
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
|
2007-07-04 18:50:45 +04:00
|
|
|
rules *HAVE ANY EFFECT*!).
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
--index-filter <command>::
|
|
|
|
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
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
faster. Frequently used with `git rm --cached
|
|
|
|
--ignore-unmatch ...`, see EXAMPLES below. For hairy
|
2009-03-12 02:00:56 +03:00
|
|
|
cases, see linkgit:git-update-index[1].
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
--parent-filter <command>::
|
|
|
|
This is the filter for rewriting the commit's parent list.
|
|
|
|
It will receive the parent string on stdin and shall output
|
|
|
|
the new parent string on stdout. The parent string is in
|
2008-06-30 22:56:34 +04:00
|
|
|
the format described in linkgit:git-commit-tree[1]: empty for
|
2007-07-04 03:41:55 +04:00
|
|
|
the initial commit, "-p parent" for a normal commit and
|
|
|
|
"-p parent1 -p parent2 -p parent3 ..." for a merge commit.
|
|
|
|
|
|
|
|
--msg-filter <command>::
|
|
|
|
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.
|
|
|
|
|
|
|
|
--commit-filter <command>::
|
|
|
|
This is the filter for performing the commit.
|
|
|
|
If this filter is specified, it will be called instead of the
|
2010-01-10 02:33:00 +03:00
|
|
|
'git commit-tree' command, with arguments of the form
|
2010-10-08 21:31:17 +04:00
|
|
|
"<TREE_ID> [(-p <PARENT_COMMIT_ID>)...]" and the log message on
|
2007-07-04 03:41:55 +04:00
|
|
|
stdin. The commit id is expected on stdout.
|
|
|
|
+
|
|
|
|
As a special extension, the commit filter may emit multiple
|
2008-05-31 01:43:40 +04:00
|
|
|
commit ids; in that case, the rewritten children of the original commit will
|
2007-07-04 03:41:55 +04:00
|
|
|
have all of them as parents.
|
2007-08-31 23:06:27 +04:00
|
|
|
+
|
|
|
|
You can use the 'map' convenience function in this filter, and other
|
|
|
|
convenience functions, too. For example, calling 'skip_commit "$@"'
|
|
|
|
will leave out the current commit (but not its changes! If you want
|
2010-01-10 02:33:00 +03:00
|
|
|
that, use 'git rebase' instead).
|
2008-10-31 12:12:21 +03:00
|
|
|
+
|
2010-01-07 19:49:12 +03:00
|
|
|
You can also use the `git_commit_non_empty_tree "$@"` instead of
|
|
|
|
`git commit-tree "$@"` if you don't wish to keep commits with a single parent
|
2008-10-31 12:12:21 +03:00
|
|
|
and that makes no change to the tree.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
--tag-name-filter <command>::
|
|
|
|
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.
|
|
|
|
+
|
|
|
|
The original tags are not deleted, but can be overwritten;
|
2007-08-18 03:13:04 +04:00
|
|
|
use "--tag-name-filter cat" to simply update the tags. In this
|
2007-07-04 03:41:55 +04:00
|
|
|
case, be very careful and make sure you have the old tags
|
|
|
|
backed up in case the conversion has run afoul.
|
|
|
|
+
|
2008-03-26 18:47:09 +03:00
|
|
|
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.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2008-10-31 12:12:21 +03:00
|
|
|
--prune-empty::
|
2017-02-23 11:27:35 +03:00
|
|
|
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
|
|
|
|
`--commit-filter`, though the same effect can be achieved by using the
|
|
|
|
provided `git_commit_non_empty_tree` function in a commit filter.
|
2008-10-31 12:12:21 +03:00
|
|
|
|
2007-08-30 21:10:42 +04:00
|
|
|
--original <namespace>::
|
|
|
|
Use this option to set the namespace where the original commits
|
|
|
|
will be stored. The default value is 'refs/original'.
|
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
-d <directory>::
|
|
|
|
Use this option to set the path to the temporary directory used for
|
|
|
|
rewriting. When applying a tree filter, the command needs to
|
2008-03-21 00:30:32 +03:00
|
|
|
temporarily check out the tree to some directory, which may consume
|
2007-07-04 03:41:55 +04:00
|
|
|
considerable space in case of large projects. By default it
|
2019-03-06 16:04:46 +03:00
|
|
|
does this in the `.git-rewrite/` directory but you can override
|
2007-07-04 03:41:55 +04:00
|
|
|
that choice by this parameter.
|
|
|
|
|
2008-06-08 05:36:09 +04:00
|
|
|
-f::
|
|
|
|
--force::
|
2010-01-10 02:33:00 +03:00
|
|
|
'git filter-branch' refuses to start with an existing temporary
|
2007-07-23 21:34:13 +04:00
|
|
|
directory or when there are already refs starting with
|
|
|
|
'refs/original/', unless forced.
|
|
|
|
|
2017-09-21 10:49:31 +03:00
|
|
|
--state-branch <branch>::
|
|
|
|
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 '<branch>' does not exist it will be created.
|
|
|
|
|
2008-07-30 13:33:43 +04:00
|
|
|
<rev-list options>...::
|
2010-01-10 02:33:00 +03:00
|
|
|
Arguments for 'git rev-list'. All positive refs included by
|
2008-08-07 18:16:03 +04:00
|
|
|
these options are rewritten. You may also specify options
|
2016-06-28 14:40:12 +03:00
|
|
|
such as `--all`, but you must use `--` to separate them from
|
2010-08-28 00:44:56 +04:00
|
|
|
the 'git filter-branch' options. Implies <<Remap_to_ancestor>>.
|
|
|
|
|
|
|
|
|
|
|
|
[[Remap_to_ancestor]]
|
|
|
|
Remap to ancestor
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
2016-05-04 20:36:24 +03:00
|
|
|
By using linkgit:git-rev-list[1] arguments, e.g., path limiters, you can limit the
|
2010-08-28 00:44:56 +04:00
|
|
|
set of revisions which get rewritten. However, positive refs on the command
|
|
|
|
line are distinguished: we don't let them be excluded by such limiters. For
|
|
|
|
this purpose, they are instead rewritten to point at the nearest ancestor that
|
|
|
|
was not excluded.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
|
|
|
|
2018-03-15 20:09:18 +03:00
|
|
|
EXIT STATUS
|
|
|
|
-----------
|
|
|
|
|
|
|
|
On success, the exit status is `0`. If the filter can't find any commits to
|
|
|
|
rewrite, the exit status is `2`. On any other error, the exit status may be
|
|
|
|
any other non-zero value.
|
|
|
|
|
|
|
|
|
2018-04-30 18:35:33 +03:00
|
|
|
EXAMPLES
|
2007-07-04 03:41:55 +04:00
|
|
|
--------
|
|
|
|
|
|
|
|
Suppose you want to remove a file (containing confidential information
|
|
|
|
or copyright violation) from all commits:
|
|
|
|
|
|
|
|
-------------------------------------------------------
|
2007-07-23 21:34:13 +04:00
|
|
|
git filter-branch --tree-filter 'rm filename' HEAD
|
2007-07-04 03:41:55 +04:00
|
|
|
-------------------------------------------------------
|
|
|
|
|
2008-05-16 23:43:50 +04:00
|
|
|
However, if the file is absent from the tree of some commit,
|
|
|
|
a simple `rm filename` will fail for that tree and commit.
|
|
|
|
Thus you may instead want to use `rm -f filename` as the script.
|
|
|
|
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
Using `--index-filter` with 'git rm' yields a significantly faster
|
2009-03-12 02:00:56 +03:00
|
|
|
version. Like with using `rm filename`, `git rm --cached filename`
|
|
|
|
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
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
history, so we also add `--ignore-unmatch`:
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-07-23 21:34:13 +04:00
|
|
|
--------------------------------------------------------------------------
|
2009-03-12 02:00:56 +03:00
|
|
|
git filter-branch --index-filter 'git rm --cached --ignore-unmatch filename' HEAD
|
2007-07-23 21:34:13 +04:00
|
|
|
--------------------------------------------------------------------------
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-10-17 06:22:25 +04:00
|
|
|
Now, you will get the rewritten history saved in HEAD.
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2008-08-07 18:16:03 +04:00
|
|
|
To rewrite the repository to look as if `foodir/` had been its project
|
|
|
|
root, and discard all other history:
|
|
|
|
|
|
|
|
-------------------------------------------------------
|
|
|
|
git filter-branch --subdirectory-filter foodir -- --all
|
|
|
|
-------------------------------------------------------
|
|
|
|
|
|
|
|
Thus you can, e.g., turn a library subdirectory into a repository of
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
its own. Note the `--` that separates 'filter-branch' options from
|
|
|
|
revision options, and the `--all` to rewrite all branches and tags.
|
2008-08-07 18:16:03 +04:00
|
|
|
|
2007-07-04 11:32:47 +04:00
|
|
|
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:
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-07-23 21:34:13 +04:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
git filter-branch --parent-filter 'sed "s/^\$/-p <graft-id>/"' HEAD
|
|
|
|
-------------------------------------------------------------------
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-08-31 20:42:33 +04:00
|
|
|
(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
|
2007-07-04 03:41:55 +04:00
|
|
|
history with a single root (that is, no merge without common ancestors
|
|
|
|
happened). If this is not the case, use:
|
|
|
|
|
2007-07-23 21:34:13 +04:00
|
|
|
--------------------------------------------------------------------------
|
2007-07-04 03:41:55 +04:00
|
|
|
git filter-branch --parent-filter \
|
2008-02-26 05:14:31 +03:00
|
|
|
'test $GIT_COMMIT = <commit-id> && echo "-p <graft-id>" || cat' HEAD
|
2007-07-23 21:34:13 +04:00
|
|
|
--------------------------------------------------------------------------
|
2007-07-04 03:41:55 +04:00
|
|
|
|
2007-07-04 11:32:47 +04:00
|
|
|
or even simpler:
|
|
|
|
|
|
|
|
-----------------------------------------------
|
2018-04-29 01:44:53 +03:00
|
|
|
git replace --graft $commit-id $graft-id
|
2007-07-23 21:34:13 +04:00
|
|
|
git filter-branch $graft-id..HEAD
|
2007-07-04 11:32:47 +04:00
|
|
|
-----------------------------------------------
|
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
To remove commits authored by "Darl McBribe" from the history:
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
git filter-branch --commit-filter '
|
|
|
|
if [ "$GIT_AUTHOR_NAME" = "Darl McBribe" ];
|
|
|
|
then
|
2007-08-31 23:06:27 +04:00
|
|
|
skip_commit "$@";
|
2007-07-04 03:41:55 +04:00
|
|
|
else
|
|
|
|
git commit-tree "$@";
|
2007-07-23 21:34:13 +04:00
|
|
|
fi' HEAD
|
2007-07-04 03:41:55 +04:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
2007-11-01 16:24:11 +03:00
|
|
|
The function 'skip_commit' is defined as follows:
|
2007-08-31 23:06:27 +04:00
|
|
|
|
|
|
|
--------------------------
|
|
|
|
skip_commit()
|
|
|
|
{
|
|
|
|
shift;
|
|
|
|
while [ -n "$1" ];
|
|
|
|
do
|
|
|
|
shift;
|
|
|
|
map "$1";
|
|
|
|
shift;
|
|
|
|
done;
|
|
|
|
}
|
|
|
|
--------------------------
|
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
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.
|
|
|
|
|
2012-09-18 19:55:08 +04:00
|
|
|
*NOTE* 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 _changes_ together with the commits, you should use the
|
|
|
|
interactive mode of 'git rebase'.
|
|
|
|
|
2008-04-30 11:47:43 +04:00
|
|
|
You can rewrite the commit log messages using `--msg-filter`. For
|
2010-01-10 02:33:00 +03:00
|
|
|
example, 'git svn-id' strings in a repository created by 'git svn' can
|
2008-02-25 17:43:53 +03:00
|
|
|
be removed this way:
|
|
|
|
|
|
|
|
-------------------------------------------------------
|
2008-04-30 11:47:43 +04:00
|
|
|
git filter-branch --msg-filter '
|
2008-02-25 17:43:53 +03:00
|
|
|
sed -e "/^git-svn-id:/d"
|
|
|
|
'
|
|
|
|
-------------------------------------------------------
|
2007-08-31 23:06:27 +04:00
|
|
|
|
2009-08-18 00:38:46 +04:00
|
|
|
If you need to add 'Acked-by' lines to, say, the last 10 commits (none
|
|
|
|
of which is a merge), use this command:
|
|
|
|
|
|
|
|
--------------------------------------------------------
|
|
|
|
git filter-branch --msg-filter '
|
|
|
|
cat &&
|
|
|
|
echo "Acked-by: Bugs Bunny <bunny@bugzilla.org>"
|
|
|
|
' HEAD~10..HEAD
|
|
|
|
--------------------------------------------------------
|
|
|
|
|
2013-02-22 00:23:38 +04:00
|
|
|
The `--env-filter` 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:
|
|
|
|
|
|
|
|
--------------------------------------------------------
|
|
|
|
git filter-branch --env-filter '
|
|
|
|
if test "$GIT_AUTHOR_EMAIL" = "root@localhost"
|
|
|
|
then
|
|
|
|
GIT_AUTHOR_EMAIL=john@example.com
|
|
|
|
fi
|
|
|
|
if test "$GIT_COMMITTER_EMAIL" = "root@localhost"
|
|
|
|
then
|
|
|
|
GIT_COMMITTER_EMAIL=john@example.com
|
|
|
|
fi
|
|
|
|
' -- --all
|
|
|
|
--------------------------------------------------------
|
|
|
|
|
2012-09-18 19:55:08 +04:00
|
|
|
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 'git rev-list' of this range
|
|
|
|
will print.
|
2007-08-31 20:42:33 +04:00
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
Consider this history:
|
|
|
|
|
|
|
|
------------------
|
|
|
|
D--E--F--G--H
|
|
|
|
/ /
|
|
|
|
A--B-----C
|
|
|
|
------------------
|
|
|
|
|
|
|
|
To rewrite only commits D,E,F,G,H, but leave A, B and C alone, use:
|
|
|
|
|
|
|
|
--------------------------------
|
2007-07-23 21:34:13 +04:00
|
|
|
git filter-branch ... C..H
|
2007-07-04 03:41:55 +04:00
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
To rewrite commits E,F,G,H, use one of these:
|
|
|
|
|
|
|
|
----------------------------------------
|
2007-07-23 21:34:13 +04:00
|
|
|
git filter-branch ... C..H --not D
|
|
|
|
git filter-branch ... D..H --not C
|
2007-07-04 03:41:55 +04:00
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
To move the whole tree into a subdirectory, or remove it from there:
|
|
|
|
|
|
|
|
---------------------------------------------------------------
|
|
|
|
git filter-branch --index-filter \
|
2010-02-01 15:43:45 +03:00
|
|
|
'git ls-files -s | sed "s-\t\"*-&newsubdir/-" |
|
2007-07-04 03:41:55 +04:00
|
|
|
GIT_INDEX_FILE=$GIT_INDEX_FILE.new \
|
|
|
|
git update-index --index-info &&
|
2011-04-01 18:46:27 +04:00
|
|
|
mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"' HEAD
|
2007-07-04 03:41:55 +04:00
|
|
|
---------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2009-02-14 23:56:51 +03:00
|
|
|
|
2018-04-30 18:35:33 +03:00
|
|
|
CHECKLIST FOR SHRINKING A REPOSITORY
|
2009-02-14 23:56:51 +03:00
|
|
|
------------------------------------
|
|
|
|
|
docs: add filter-branch notes on The BFG
The BFG is a tool specifically designed for the task of removing
unwanted data from Git repository history - a common use-case for which
git-filter-branch has been the traditional workhorse.
It's beneficial to let users know that filter-branch has an alternative
here:
* speed : The BFG is 10-50x faster
http://rtyley.github.io/bfg-repo-cleaner/#speed
* complexity of configuration : filter-branch is a very flexible tool,
but demands very careful usage in order to get the desired results
http://rtyley.github.io/bfg-repo-cleaner/#examples
Obviously, filter-branch has it's advantages too - it permits very
complex rewrites, and doesn't require a JVM - but for the common
use-case of deleting unwanted data, it's helpful to users to be aware
that an alternative exists.
The BFG was released under the GPL in February 2013, and has since seen
widespread production use (The Guardian, RedHat, Google, UK Government
Digital Service), been tested against large repos (~300K commits, ~5GB
packfiles) and received significant positive feedback from users:
http://rtyley.github.io/bfg-repo-cleaner/#feedback
Signed-off-by: Roberto Tyley <roberto.tyley@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-12-18 18:25:16 +04:00
|
|
|
git-filter-branch can be used to get rid of a subset of files,
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
usually with some combination of `--index-filter` and
|
|
|
|
`--subdirectory-filter`. People expect the resulting repository to
|
2009-02-14 23:56:51 +03:00
|
|
|
be smaller than the original, but you need a few more steps to
|
2013-01-21 23:17:53 +04:00
|
|
|
actually make it smaller, because Git tries hard not to lose your
|
2009-02-14 23:56:51 +03:00
|
|
|
objects until you tell it to. First make sure that:
|
|
|
|
|
|
|
|
* You really removed all variants of a filename, if a blob was moved
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
over its lifetime. `git log --name-only --follow --all -- filename`
|
|
|
|
can help you find renames.
|
2009-02-14 23:56:51 +03:00
|
|
|
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
* You really filtered all refs: use `--tag-name-filter cat -- --all`
|
|
|
|
when calling git-filter-branch.
|
2009-02-14 23:56:51 +03:00
|
|
|
|
|
|
|
Then there are two ways to get a smaller repository. A safer way is
|
|
|
|
to clone, that keeps your original intact.
|
|
|
|
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
* Clone it with `git clone file:///path/to/repo`. The clone
|
2009-02-14 23:56:51 +03:00
|
|
|
will not have the removed objects. See linkgit:git-clone[1]. (Note
|
|
|
|
that cloning with a plain path just hardlinks everything!)
|
|
|
|
|
|
|
|
If you really don't want to clone it, for whatever reasons, check the
|
|
|
|
following points instead (in this order). This is a very destructive
|
|
|
|
approach, so *make a backup* or go back to cloning it. You have been
|
|
|
|
warned.
|
|
|
|
|
|
|
|
* Remove the original refs backed up by git-filter-branch: say `git
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git
|
2009-02-14 23:56:51 +03:00
|
|
|
update-ref -d`.
|
|
|
|
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
* Expire all reflogs with `git reflog expire --expire=now --all`.
|
2009-02-14 23:56:51 +03:00
|
|
|
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
* Garbage collect all unreferenced objects with `git gc --prune=now`
|
2009-02-14 23:56:51 +03:00
|
|
|
(or if your git-gc is not new enough to support arguments to
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
`--prune`, use `git repack -ad; git prune` instead).
|
2009-02-14 23:56:51 +03:00
|
|
|
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
[[PERFORMANCE]]
|
|
|
|
PERFORMANCE
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The performance of git-filter-branch is glacially slow; its design makes it
|
|
|
|
impossible for a backward-compatible implementation to ever be fast:
|
|
|
|
|
|
|
|
* In editing files, git-filter-branch by design checks out each and
|
2019-12-12 23:46:55 +03:00
|
|
|
every commit as it existed in the original repo. If your repo has
|
git-filter-branch.txt: wrap "maths" notation in backticks
In this paragraph, we have a few instances of the '^' character, which
we give as "\^". This renders well with AsciiDoc ("^"), but Asciidoctor
renders it literally as "\^". Dropping the backslashes renders fine
with Asciidoctor, but not AsciiDoc...
An earlier version of this patch used "{caret}" instead of "^", which
avoided these escaping problems. The rendering was still so-so, though
-- these expressions end up set as normal text, similarly to when one
provides, e.g., computer code in the middle of running text, without
properly marking it with `backticks` to be monospaced.
As noted by Jeff King, this suggests actually wrapping these
expressions in backticks, setting them in monospace.
The lone "5" could be left as is or wrapped as `5`. Spell it out as
"five" instead -- this generally looks better anyway for small numbers
in the middle of text like this.
Suggested-by: Jeff King <peff@peff.net>
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-02-03 23:36:50 +03:00
|
|
|
`10^5` files and `10^5` commits, but each commit only modifies five
|
|
|
|
files, then git-filter-branch will make you do `10^10` modifications,
|
|
|
|
despite only having (at most) `5*10^5` unique blobs.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* If you try and cheat and try to make git-filter-branch only work on
|
2019-12-12 23:46:55 +03:00
|
|
|
files modified in a commit, then two things happen
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
** you run into problems with deletions whenever the user is simply
|
|
|
|
trying to rename files (because attempting to delete files that
|
|
|
|
don't 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)
|
|
|
|
|
|
|
|
** even if you succeed at the map-deletes-for-renames chicanery, you
|
2019-12-12 23:46:55 +03:00
|
|
|
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).
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* Even if you don't need to edit files but only want to e.g. rename or
|
2019-12-12 23:46:55 +03:00
|
|
|
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's a
|
|
|
|
significant setup.
|
|
|
|
|
|
|
|
* 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's
|
|
|
|
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.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* The user-provided shell commands will likely involve a pipeline of
|
2019-12-12 23:46:55 +03:00
|
|
|
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.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* git-filter-branch itself is written in shell, which is kind of slow.
|
2019-12-12 23:46:55 +03:00
|
|
|
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.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
** 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'd help less than you'd expect: if
|
|
|
|
git-filter-branch itself were not shell, then the convenience
|
|
|
|
functions (map(), skip_commit(), etc) and the `--setup` 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).
|
|
|
|
|
|
|
|
The https://github.com/newren/git-filter-repo/[git filter-repo] 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, 'git
|
2020-10-20 11:33:43 +03:00
|
|
|
filter-repo' also provides
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
https://github.com/newren/git-filter-repo/blob/master/contrib/filter-repo-demos/filter-lamely[filter-lamely],
|
|
|
|
a drop-in git-filter-branch replacement (with a few caveats). While
|
|
|
|
filter-lamely suffers from all the same safety issues as
|
2019-11-05 20:07:20 +03:00
|
|
|
git-filter-branch, it at least ameliorates the performance issues a
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
little.
|
|
|
|
|
|
|
|
[[SAFETY]]
|
|
|
|
SAFETY
|
|
|
|
------
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
* Someone can have a set of "working and tested filters" which they
|
2019-12-12 23:46:55 +03:00
|
|
|
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't
|
|
|
|
do the filtering requested, or silently corrupt by making some
|
|
|
|
unwanted change. The unwanted change may only affect a few commits,
|
|
|
|
so it's not necessarily obvious either. (The fact that problems
|
|
|
|
won't 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's really hard to justify another flag-day for another
|
|
|
|
rewrite.)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* Filenames with spaces are often mishandled by shell snippets since
|
2019-12-12 23:46:55 +03:00
|
|
|
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't in the mindset of thinking about
|
|
|
|
everything that could possibly go wrong.
|
|
|
|
|
|
|
|
* Non-ascii filenames can be silently removed despite being in a
|
|
|
|
desired directory. Keeping only wanted paths is often done using
|
|
|
|
pipelines like `git ls-files | grep -v ^WANTED_DIR/ | xargs git rm`.
|
|
|
|
ls-files will only quote filenames if needed, so folks may not
|
|
|
|
notice that one of the files didn't match the regex (at least not
|
|
|
|
until it's much too late). Yes, someone who knows about
|
|
|
|
core.quotePath can avoid this (unless they have other special
|
|
|
|
characters like \t, \n, or "), and people who use ls-files -z with
|
|
|
|
something other than grep can avoid this, but that doesn't mean they
|
|
|
|
will.
|
|
|
|
|
|
|
|
* 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.)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* It's far too easy to accidentally mix up old and new history. It's
|
2019-12-12 23:46:55 +03:00
|
|
|
still possible with any tool, but git-filter-branch almost
|
|
|
|
invites it. If lucky, the only downside is users getting frustrated
|
|
|
|
that they don't 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't. This comes about in
|
|
|
|
multiple different ways:
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
** the default to only doing a partial history rewrite ('--all' is not
|
|
|
|
the default and few examples show it)
|
|
|
|
|
|
|
|
** the fact that there's no automatic post-run cleanup
|
|
|
|
|
|
|
|
** the fact that --tag-name-filter (when used to rename tags) doesn't
|
|
|
|
remove the old tags but just adds new ones with the new name
|
|
|
|
|
|
|
|
** 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's only one of multiple concerns to consider. See the
|
|
|
|
"DISCUSSION" section of the git filter-repo manual page for more
|
|
|
|
details.
|
|
|
|
|
2019-12-12 23:46:55 +03:00
|
|
|
* Annotated tags can be accidentally converted to lightweight tags,
|
|
|
|
due to either of two issues:
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
** 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.)
|
|
|
|
|
|
|
|
** 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).
|
|
|
|
|
|
|
|
* Any commit messages that specify an encoding will become corrupted
|
2019-12-12 23:46:55 +03:00
|
|
|
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.)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* Commit messages (even if they are all UTF-8) by default become
|
2019-12-12 23:46:55 +03:00
|
|
|
corrupted due to not being updated -- any references to other commit
|
|
|
|
hashes in commit messages will now refer to no-longer-extant
|
|
|
|
commits.
|
|
|
|
|
|
|
|
* 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't have ever been
|
|
|
|
functional since it's missing some files.)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* If --prune-empty isn't specified, then the filtering process can
|
2019-12-12 23:46:55 +03:00
|
|
|
create hoards of confusing empty commits
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* If --prune-empty is specified, then intentionally placed empty
|
2019-12-12 23:46:55 +03:00
|
|
|
commits from before the filtering operation are also pruned instead
|
|
|
|
of just pruning commits that became empty due to filtering rules.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
2019-11-06 02:31:30 +03:00
|
|
|
* If --prune-empty is specified, sometimes empty commits are missed
|
2019-12-12 23:46:55 +03:00
|
|
|
and left around anyway (a somewhat rare bug, but it happens...)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* A minor issue, but users who have a goal to update all names and
|
2019-12-12 23:46:55 +03:00
|
|
|
emails in a repository may be led to --env-filter which will only
|
|
|
|
update authors and committers, missing taggers.
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
* If the user provides a --tag-name-filter that maps multiple tags to
|
2019-12-12 23:46:55 +03:00
|
|
|
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.)
|
Recommend git-filter-repo instead of git-filter-branch
filter-branch suffers from a deluge of disguised dangers that disfigure
history rewrites (i.e. deviate from the deliberate changes). Many of
these problems are unobtrusive and can easily go undiscovered until the
new repository is in use. This can result in problems ranging from an
even messier history than what led folks to filter-branch in the first
place, to data loss or corruption. These issues cannot be backward
compatibly fixed, so add a warning to both filter-branch and its manpage
recommending that another tool (such as filter-repo) be used instead.
Also, update other manpages that referenced filter-branch. Several of
these needed updates even if we could continue recommending
filter-branch, either due to implying that something was unique to
filter-branch when it applied more generally to all history rewriting
tools (e.g. BFG, reposurgeon, fast-import, filter-repo), or because
something about filter-branch was used as an example despite other more
commonly known examples now existing. Reword these sections to fix
these issues and to avoid recommending filter-branch.
Finally, remove the section explaining BFG Repo Cleaner as an
alternative to filter-branch. I feel somewhat bad about this,
especially since I feel like I learned so much from BFG that I put to
good use in filter-repo (which is much more than I can say for
filter-branch), but keeping that section presented a few problems:
* In order to recommend that people quit using filter-branch, we need
to provide them a recomendation for something else to use that
can handle all the same types of rewrites. To my knowledge,
filter-repo is the only such tool. So it needs to be mentioned.
* I don't want to give conflicting recommendations to users
* If we recommend two tools, we shouldn't expect users to learn both
and pick which one to use; we should explain which problems one
can solve that the other can't or when one is much faster than
the other.
* BFG and filter-repo have similar performance
* All filtering types that BFG can do, filter-repo can also do. In
fact, filter-repo comes with a reimplementation of BFG named
bfg-ish which provides the same user-interface as BFG but with
several bugfixes and new features that are hard to implement in
BFG due to its technical underpinnings.
While I could still mention both tools, it seems like I would need to
provide some kind of comparison and I would ultimately just say that
filter-repo can do everything BFG can, so ultimately it seems that it
is just better to remove that section altogether.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-05 01:32:38 +03:00
|
|
|
|
|
|
|
Also, the poor performance of git-filter-branch often leads to safety
|
|
|
|
issues:
|
|
|
|
|
2019-12-12 23:46:55 +03:00
|
|
|
* Coming up with the correct shell snippet to do the filtering you
|
|
|
|
want is sometimes difficult unless you're 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.
|
|
|
|
|
|
|
|
* 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't have some special cases that someone else's 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't work, as noted above.
|
docs: add filter-branch notes on The BFG
The BFG is a tool specifically designed for the task of removing
unwanted data from Git repository history - a common use-case for which
git-filter-branch has been the traditional workhorse.
It's beneficial to let users know that filter-branch has an alternative
here:
* speed : The BFG is 10-50x faster
http://rtyley.github.io/bfg-repo-cleaner/#speed
* complexity of configuration : filter-branch is a very flexible tool,
but demands very careful usage in order to get the desired results
http://rtyley.github.io/bfg-repo-cleaner/#examples
Obviously, filter-branch has it's advantages too - it permits very
complex rewrites, and doesn't require a JVM - but for the common
use-case of deleting unwanted data, it's helpful to users to be aware
that an alternative exists.
The BFG was released under the GPL in February 2013, and has since seen
widespread production use (The Guardian, RedHat, Google, UK Government
Digital Service), been tested against large repos (~300K commits, ~5GB
packfiles) and received significant positive feedback from users:
http://rtyley.github.io/bfg-repo-cleaner/#feedback
Signed-off-by: Roberto Tyley <roberto.tyley@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-12-18 18:25:16 +04:00
|
|
|
|
2007-07-04 03:41:55 +04:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|