Created
April 16, 2015 06:43
-
-
Save lequinharay/68ff6065c43f98341965 to your computer and use it in GitHub Desktop.
gitの履歴をさかのぼって、過去のcommiter/authorを書き換える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 参考: http://d.hatena.ne.jp/idesaku/20090908/1252419890 | |
| # 参考: http://qiita.com/sea_mountain/items/d70216a5bc16a88ed932 | |
| git filter-branch --commit-filter ' | |
| GIT_AUTHOR_NAME="lequinharay" | |
| GIT_AUTHOR_EMAIL="lequinharay@gmail.com" | |
| GIT_COMMITTER_NAME="lequinharay" | |
| GIT_COMMITTER_EMAIL="lequinharay@gmail.com" | |
| git commit-tree "$@" | |
| ' HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment