Guest User

Untitled

a guest
Dec 13th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. git checkout file_Name.txt
  2.  
  3. error: path 'first_Name.txt' is unmerged
  4.  
  5. $ git status
  6. On branch master
  7. You are currently reverting commit f200bf5.
  8. (fix conflicts and run "git revert --continue")
  9. (use "git revert --abort" to cancel the revert operation)
  10.  
  11. Unmerged paths:
  12. (use "git reset HEAD <file>..." to unstage)
  13. (use "git add <file>..." to mark resolution)
  14.  
  15. both modified: first_file.txt
  16.  
  17. Untracked files:
  18. (use "git add <file>..." to include in what will be committed)
  19.  
  20. explore_california/
  21.  
  22. no changes added to commit (use "git add" and/or "git commit -a")
  23.  
  24. git rm first_file.txt
  25.  
  26. rm -r explore_california
  27.  
  28. git reset first_Name.txt
  29. git checkout first_Name.txt
  30.  
  31. Unmerged paths:
  32. (use "git reset HEAD <file>..." to unstage)
  33. (use "git add <file>..." to mark resolution)
  34.  
  35. git rm first_file.txt
  36.  
  37. git commit -m "fix conflict"
  38.  
  39. git reset HEAD
  40.  
  41. git stash
  42. src/config.php: needs merge
  43. src/config.php: needs merge
  44. src/config.php: unmerge(230a02b5bf1c6eab8adce2cec8d573822d21241d)
  45. src/config.php: unmerged (f5cc88c0fda69bf72107bcc5c2860c3e5eb978fa)
  46.  
  47. git reset HEAD
Add Comment
Please, Sign In to add comment