Skip to content

Instantly share code, notes, and snippets.

@LimeBlast
Last active November 5, 2015 16:26
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 LimeBlast/514d2b84b779ae840810 to your computer and use it in GitHub Desktop.
Save LimeBlast/514d2b84b779ae840810 to your computer and use it in GitHub Desktop.
How to rebase a branch into master
  • git checkout master
  • git pull
  • git checkout <branch>
  • git rebase master
  • git push --force
  • git checkout master
  • git merge <branch> --no-ff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment