summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2008-04-30 07:47:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-05-03 19:05:21 (GMT)
commita1748890dbfba4286c54fc9a3ce5786dfa25be33 (patch)
tree20f547376ee25b988050298e15d1d8bbfe1058bd
parentb3bb5f76e6193db102b063187be854ef3842d89b (diff)
downloadgit-a1748890dbfba4286c54fc9a3ce5786dfa25be33.zip
git-a1748890dbfba4286c54fc9a3ce5786dfa25be33.tar.gz
git-a1748890dbfba4286c54fc9a3ce5786dfa25be33.tar.bz2
filter-branch: Documentation fix.
It's --msg-filter, not --message-filter. Signed-off-by: Florian Ragwitz <rafl@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/git-filter-branch.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index 543a1cf..ee0f053 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -242,12 +242,12 @@ 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.
-You can rewrite the commit log messages using `--message-filter`. For
+You can rewrite the commit log messages using `--msg-filter`. For
example, `git-svn-id` strings in a repository created by `git-svn` can
be removed this way:
-------------------------------------------------------
-git filter-branch --message-filter '
+git filter-branch --msg-filter '
sed -e "/^git-svn-id:/d"
'
-------------------------------------------------------