Skip to content

Instantly share code, notes, and snippets.

@rcmorano
Created February 9, 2014 17:42
Show Gist options
  • Save rcmorano/8902799 to your computer and use it in GitHub Desktop.
Save rcmorano/8902799 to your computer and use it in GitHub Desktop.
Changes git commiter/author info in the whole reflog based on current $GIT_COMMITTER_NAME. Be careful on multiuser repositories!
#!/bin/bash
git filter-branch --env-filter '
an="$GIT_AUTHOR_NAME"
am="$GIT_AUTHOR_EMAIL"
cn="$GIT_COMMITTER_NAME"
cm="$GIT_COMMITTER_EMAIL"
if [ "$GIT_COMMITTER_NAME" = "forgot_to_set_user" ]
then
cn="Robeto C. Morano"
cm="[email protected]"
an="Robeto C. Morano"
am="[email protected]"
fi
export GIT_AUTHOR_NAME="$an"
export GIT_AUTHOR_EMAIL="$am"
export GIT_COMMITTER_NAME="$cn"
export GIT_COMMITTER_EMAIL="$cm"
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment