summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTadeusz Andrzej Kadłubowski <yess@hell.org.pl>2013-02-21 20:23:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-02-26 17:34:51 (GMT)
commit21b6e4f24c74755d700d59edd47d5b88ff56ea5d (patch)
tree8a479ed3e015e895f9dc38ee4e957553b997daac
parentbee3eb079d10bd309c75c39efa1e50fbb70931d4 (diff)
downloadgit-21b6e4f24c74755d700d59edd47d5b88ff56ea5d.zip
git-21b6e4f24c74755d700d59edd47d5b88ff56ea5d.tar.gz
git-21b6e4f24c74755d700d59edd47d5b88ff56ea5d.tar.bz2
Documentation: filter-branch env-filter example
filter-branch --env-filter example that shows how to change the email address in all commits before publishing a project. Signed-off-by: Tadeusz Andrzej Kadłubowski <yess@hell.org.pl> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/git-filter-branch.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index c915d05..69a40b2 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -332,6 +332,26 @@ git filter-branch --msg-filter '
' HEAD~10..HEAD
--------------------------------------------------------
+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
+ export GIT_AUTHOR_EMAIL
+ fi
+ if test "$GIT_COMMITTER_EMAIL" = "root@localhost"
+ then
+ GIT_COMMITTER_EMAIL=john@example.com
+ export GIT_COMMITTER_EMAIL
+ fi
+' -- --all
+--------------------------------------------------------
+
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