Skip to content

Instantly share code, notes, and snippets.

@lequinharay
Created April 16, 2015 06:43
Show Gist options
  • Select an option

  • Save lequinharay/68ff6065c43f98341965 to your computer and use it in GitHub Desktop.

Select an option

Save lequinharay/68ff6065c43f98341965 to your computer and use it in GitHub Desktop.
gitの履歴をさかのぼって、過去のcommiter/authorを書き換える
# 参考: 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