The graft file is deprecated now, so let's use replace refs in the example in filter-branch's man page instead.
Suggested-by: Eric Sunshine <sunsh...@sunshineco.com> Signed-off-by: Johannes Schindelin <johannes.schinde...@gmx.de> --- Documentation/git-filter-branch.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt index b634043183b..1d4d2f86045 100644 --- a/Documentation/git-filter-branch.txt +++ b/Documentation/git-filter-branch.txt @@ -288,7 +288,7 @@ git filter-branch --parent-filter \ or even simpler: ----------------------------------------------- -echo "$commit-id $graft-id" >> .git/info/grafts +git replace --graft $commit-id $graft-id git filter-branch $graft-id..HEAD ----------------------------------------------- -- 2.17.0.windows.1.4.g7e4058d72e3