Skip to content

Instantly share code, notes, and snippets.

@omarjackman
Last active November 10, 2015 20:04
Show Gist options
  • Save omarjackman/e4c82f6531712a12ba50 to your computer and use it in GitHub Desktop.
Save omarjackman/e4c82f6531712a12ba50 to your computer and use it in GitHub Desktop.
Rebase current branch with an updated version of master
git checkout master && \
git pull && \
git pull origin master && \
git fetch && \
git fetch origin master && \
git checkout - && \
git rebase master -i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment