Guest User

Untitled

a guest
Jan 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. $ cd ~/workspace/tmp/
  2. $ git clone git://gist.github.com/1163698.git gist-1163698
  3. > ...
  4. $ cd gist-1163698/
  5. $ git remote add brett git://gist.github.com/1168323.git gist-1168323
  6. $ git remote add steve git://gist.github.com/1168327.git
  7. $ git fetch brett
  8. > ...
  9. > From git://gist.github.com/1168323
  10. > * [new branch] master -> brett/master
  11. $ git fetch steve
  12. > ...
  13. > From git://gist.github.com/1168327
  14. > * [new branch] master -> steve/master
  15. $ git merge brett/master
  16. > ...
  17. $ git merge steve/master
  18. > ...
  19. > CONFLICT (content): Merge conflict in hack-requirements.taskpaper
  20. > Automatic merge failed; fix conflicts and then commit the result.
  21. > ... resolve conflict ...
  22. $ git add --all
  23. $ git commit -m"Merge Brett and Steve schedules."
  24. $ git push origin master
Add Comment
Please, Sign In to add comment