Skip to content

Instantly share code, notes, and snippets.

@hoonto
Forked from mnichols/rebase
Created July 30, 2013 22:49
Show Gist options
  • Save hoonto/6117761 to your computer and use it in GitHub Desktop.
Save hoonto/6117761 to your computer and use it in GitHub Desktop.
git pull origin {tracking branch} # ie 'dev'
git checkout my-feature
git rebase {tracking branch}
#resolve conflicts
git checkout {tracking branch}
git merge my-feature
git push origin {tracking branch}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment