Skip to content

Instantly share code, notes, and snippets.

@abaicus
Created July 14, 2016 10:52
Show Gist options
  • Save abaicus/58355e2916284ff308726e7c39ad21cd to your computer and use it in GitHub Desktop.
Save abaicus/58355e2916284ff308726e7c39ad21cd to your computer and use it in GitHub Desktop.
Rebase and Merge Conflict
git remote add upstream https://github.com/owner/repo.git
git fetch upstream
git rebase upstream/development
/* Solve conflicts */
git add conflicted-files.extension
git rebase --continue
git push -f origin development
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment