Something went wrong on our end
Forked from
oai / openairinterface5G
25015 commits behind the upstream repository.
-
Rohit Gupta authored
git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7598 818b1a75-f10b-46b9-bf7c-635c3b92a50f
Rohit Gupta authoredgit-svn-id: http://svn.eurecom.fr/openair4G/trunk@7598 818b1a75-f10b-46b9-bf7c-635c3b92a50f
git-author-rewrite.sh 665 B
#!/bin/sh
#Script to change author name/email address in git. It throws errors/warnings during the migration
#Copied from, https://help.github.com/articles/changing-author-info/
git filter-branch --env-filter '
OLD_EMAIL="your-old-email@example.com"
CORRECT_NAME="Your Correct Name"
CORRECT_EMAIL="your-correct-email@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