Skip to content

Instantly share code, notes, and snippets.

@nasitra
Created January 28, 2015 13:25
Show Gist options
  • Save nasitra/348a5eac93ca93f954cc to your computer and use it in GitHub Desktop.
Save nasitra/348a5eac93ca93f954cc to your computer and use it in GitHub Desktop.
Change git author/committer name and email in the history
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='name'; GIT_AUTHOR_EMAIL='name@example.com'; GIT_COMMITTER_NAME='name'; GIT_COMMITTER_EMAIL='name@example.com';" HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment