Skip to content

Instantly share code, notes, and snippets.

View hozeren's full-sized avatar
😁

Hüsamettin Deniz Özeren hozeren

😁
View GitHub Profile
git filter-branch --env-filter '
WRONG_EMAIL="[email protected]"
NEW_NAME="New Name Value"
NEW_EMAIL="[email protected]"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi