Created
January 28, 2016 12:38
-
-
Save pontiyaraja/5384e6248c7a1c143272 to your computer and use it in GitHub Desktop.
Resolve git conflict in command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1: From your project repository, bring in the changes and test. | |
git fetch origin | |
git checkout -b server origin/server | |
git merge master | |
Step 2: Merge the changes and update on GitHub. | |
git checkout master | |
git merge --no-ff server | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment