Advertisement
Mhyrn

git (quete 4)

Mar 5th, 2020
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.56 KB | None | 0 0
  1. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git pull
  2. remote: Enumerating objects: 5, done.
  3. remote: Counting objects: 100% (5/5), done.
  4. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
  5. Unpacking objects: 100% (3/3), done.
  6. From https://github.com/Mirubrys/EspriZza
  7.    0958920..929b80d  master     -> origin/master
  8. Auto-merging README.md
  9. CONFLICT (content): Merge conflict in README.md
  10. Automatic merge failed; fix conflicts and then commit the result.
  11. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ vim README.md
  12. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git status
  13. On branch master
  14. Your branch and 'origin/master' have diverged,
  15. and have 1 and 1 different commits each, respectively.
  16.   (use "git pull" to merge the remote branch into yours)
  17.  
  18. You have unmerged paths.
  19.   (fix conflicts and run "git commit")
  20.   (use "git merge --abort" to abort the merge)
  21.  
  22. Unmerged paths:
  23.   (use "git add <file>..." to mark resolution)
  24.     both modified:   README.md
  25.  
  26. no changes added to commit (use "git add" and/or "git commit -a")
  27. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git add README.md
  28. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git commit -m "solved conflict"
  29. [master 5155067] solved conflict
  30. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git status
  31. On branch master
  32. Your branch is ahead of 'origin/master' by 2 commits.
  33.   (use "git push" to publish your local commits)
  34.  
  35. nothing to commit, working tree clean
  36. myrhn@myrhn-VirtualBox:~/workspace/quetes/git/EspriZza$ git pull
  37. Already up to date.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement