Created
April 27, 2022 08:44
-
-
Save ik0r/6a40c050f60c2c35546ff9d571c0f2cc to your computer and use it in GitHub Desktop.
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
| git filter-branch -f --env-filter ' | |
| OLD_EMAIL="old@example.com" | |
| CORRECT_NAME="name" | |
| CORRECT_EMAIL="new@example.com" | |
| if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
| then | |
| export GIT_COMMITTER_NAME="$CORRECT_NAME" | |
| export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL" | |
| fi | |
| if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] | |
| then | |
| export GIT_AUTHOR_NAME="$CORRECT_NAME" | |
| export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL" | |
| fi | |
| ' --tag-name-filter cat -- --branches --tags |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment