Skip to content

Instantly share code, notes, and snippets.

@h0h0h0
Last active August 10, 2024 19:09
Show Gist options
  • Save h0h0h0/1df8e31c5d1eb5585cbb68694db898c4 to your computer and use it in GitHub Desktop.
Save h0h0h0/1df8e31c5d1eb5585cbb68694db898c4 to your computer and use it in GitHub Desktop.
Sync upstream branches to origin
git branch -a|grep remotes/upstream| while IFS="/" read p r b; do echo Syncing $r/$b to origin/$b; git push origin $r/$b:refs/heads/$b; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment