You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
712 B

  1. ┏━╸╻╺┳╸ ┏━╸╻ ╻┏━╸┏━┓┏━┓╻ ╻ ┏━┓╻┏━╸╻┏
  2. ┃╺┓┃ ┃ ┃ ┣━┫┣╸ ┣┳┛┣┳┛┗┳┛╺━╸┣━┛┃┃ ┣┻┓
  3. ┗━┛╹ ╹ ┗━╸╹ ╹┗━╸╹┗╸╹┗╸ ╹ ╹ ╹┗━╸╹ ╹
  4. Specify commits and apply them onto your HEAD
  5. - $ git cherry-pick <commit-ish>..
  6. - $ git cherry-pick ..master
  7. - essentially the same as $ git rebase master
  8. - Useful if e.g. a hotfix has been pushed to a stable branch
  9. - Might need to clean such commits before merging