Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xnohat/6679ed103615f6bed5c14178f133ffdc to your computer and use it in GitHub Desktop.
Save xnohat/6679ed103615f6bed5c14178f133ffdc to your computer and use it in GitHub Desktop.
Update git fork with tags
# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream
git rebase upstream/master
git push
git push --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment