Skip to content

Instantly share code, notes, and snippets.

@pgbezerra
Created December 2, 2020 20:56
Show Gist options
  • Save pgbezerra/6d739eaf37078ae32ef0ab00df703954 to your computer and use it in GitHub Desktop.
Save pgbezerra/6d739eaf37078ae32ef0ab00df703954 to your computer and use it in GitHub Desktop.
Migrate git remote to a new one
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