Advertisement
Guest User

Git cherry pick guide

a guest
Jun 13th, 2013
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. https://github.com/SlimRoms/frameworks_opt_telephony/commits/jb4.2
  2. lets say u want the top commit
  3. of that repo
  4. first u cd
  5. to frameworks/opt/telephony
  6. repo start jb2 .
  7. git remote add sr git@github.com:SlimRoms/frameworks_opt_telephony.git
  8. git fetch sr
  9. git cherry-pick a582388f730702d2a65a737afc2d88b474aadc9f
  10. git push git@github.com:LiquidSmooth/android_frameworks_opt_telephony.git
  11. if the cherry-pick has conflicts
  12. it gives you a chance to fix them
  13. then
  14. git commit -a
  15. once u fix them
  16. then push ;x
  17. not hard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement