mirror of
https://github.com/simon987/scripts.git
synced 2025-04-04 08:23:05 +00:00
19 lines
463 B
Bash
Executable File
19 lines
463 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git filter-branch --env-filter '
|
|
WRONG_EMAIL="wrong@example.com"
|
|
NEW_NAME="New Name Value"
|
|
NEW_EMAIL="correct@example.com"
|
|
|
|
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
|
|
then
|
|
export GIT_COMMITTER_NAME="$NEW_NAME"
|
|
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
|
|
fi
|
|
if [ "$GIT_AUTHOR_EMAIL" = "$WRONG_EMAIL" ]
|
|
then
|
|
export GIT_AUTHOR_NAME="$NEW_NAME"
|
|
export GIT_AUTHOR_EMAIL="$NEW_EMAIL"
|
|
fi
|
|
' --tag-name-filter cat -- --branches --tags
|