From: Florian Ragwitz Date: Wed, 30 Apr 2008 07:47:43 +0000 (+0200) Subject: filter-branch: Documentation fix. X-Git-Tag: v1.5.5.2~9^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a1748890dbfba4286c54fc9a3ce5786dfa25be33;p=git.git filter-branch: Documentation fix. It's --msg-filter, not --message-filter. Signed-off-by: Florian Ragwitz Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt index 543a1cf10..ee0f0531d 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" ' -------------------------------------------------------