Created
September 22, 2013 11:26
-
-
Save evildmp/6659038 to your computer and use it in GitHub Desktop.
Conflict finding
This file contains hidden or 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
daniele@Danieles-MacBook:~/afraid-to-commit$ git remote add juan https://github.com/reidrac/afraid-to-commit | |
daniele@Danieles-MacBook:~/afraid-to-commit$ git merge juan/add-my-name | |
daniele@Danieles-MacBook:~/afraid-to-commit$ git status | |
# On branch master | |
# Changes not staged for commit: | |
# (use "git add <file>..." to update what will be committed) | |
# (use "git checkout -- <file>..." to discard changes in working directory) | |
# | |
# modified: attendees_and_learners.rst | |
# | |
no changes added to commit (use "git add" and/or "git commit -a") | |
daniele@Danieles-MacBook:~/afraid-to-commit$ git checkout attendees_and_learners.rst | |
daniele@Danieles-MacBook:~/afraid-to-commit$ git checkout -b testbranch | |
Switched to a new branch 'testbranch' | |
daniele@Danieles-MacBook:~/afraid-to-commit$ git merge juan/add-my-name | |
Auto-merging attendees_and_learners.rst | |
CONFLICT (content): Merge conflict in attendees_and_learners.rst | |
Automatic merge failed; fix conflicts and then commit the result. | |
daniele@Danieles-MacBook:~/afraid-to-commit$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment