Created
December 2, 2020 20:56
-
-
Save pgbezerra/6d739eaf37078ae32ef0ab00df703954 to your computer and use it in GitHub Desktop.
Migrate git remote to a new one
This file contains 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
YOUR_NEW_REPO="TYPE YOUR NEW REPO" | |
git remote rename origin old | |
git remote add origin $YOUR_NEW_REPO | |
for branch_old in $(git branch -rvvv | awk '/old/ {print $1}'); do | |
branch=$(echo $branch_old | sed 's/old\///g') | |
echo git checkout -b tmp $branch_old | |
echo git push origin tmp:$branch | |
echo git checkout master | |
echo git branch -d tmp | |
done | |
git remote remove old |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment