Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git cherry-pick 60fb15d
  2. error: cherry-pick is not possible because you have unmerged files.
  3. hint: Fix them up in the work tree, and then use 'git add/rm <file>'
  4. hint: as appropriate to mark resolution and make a commit, or use
  5. hint: 'git commit -a'.
  6. fatal: cherry-pick failed
  7. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git status
  8. On branch shipping/cm-11.0
  9. Your branch is up-to-date with 'origin/shipping/cm-11.0'.
  10. You are currently cherry-picking commit 60fb15d.
  11. (fix conflicts and run "git cherry-pick --continue")
  12. (use "git cherry-pick --abort" to cancel the cherry-pick operation)
  13.  
  14. Unmerged paths:
  15. (use "git add <file>..." to mark resolution)
  16.  
  17. both modified: sound/soc/codecs/wcd9320.c
  18.  
  19. no changes added to commit (use "git add" and/or "git commit -a")
  20. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git add sound/soc/codecs/wcd9320.c
  21. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git cherry-pick 60fb15d
  22. error: Your local changes would be overwritten by cherry-pick.
  23. hint: Commit your changes or stash them to proceed.
  24. fatal: cherry-pick failed
  25. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git push
  26. Everything up-to-date
  27. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git status
  28. On branch shipping/cm-11.0
  29. Your branch is up-to-date with 'origin/shipping/cm-11.0'.
  30. You are currently cherry-picking commit 60fb15d.
  31. (all conflicts fixed: run "git cherry-pick --continue")
  32. (use "git cherry-pick --abort" to cancel the cherry-pick operation)
  33.  
  34. Changes to be committed:
  35.  
  36. modified: sound/soc/codecs/wcd9320.c
  37.  
  38. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git cherry-pick --continue
  39. error: cannot run Vim: No such file or directory
  40. error: unable to start editor 'Vim'
  41. Please supply the message using either -m or -F option.
  42. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ ^C
  43. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git merge
  44. fatal: You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).
  45. Please, commit your changes before you can merge.
  46. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git status
  47. On branch shipping/cm-11.0
  48. Your branch is up-to-date with 'origin/shipping/cm-11.0'.
  49. You are currently cherry-picking commit 60fb15d.
  50. (all conflicts fixed: run "git cherry-pick --continue")
  51. (use "git cherry-pick --abort" to cancel the cherry-pick operation)
  52.  
  53. Changes to be committed:
  54.  
  55. modified: sound/soc/codecs/wcd9320.c
  56.  
  57. jgcaap@jgcaap-P5Q:~/Androidkernel/jgcaap$ git push
  58. Everything up-to-date
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement