Changes between Version 83 and Version 84 of WorkingWithGit


Ignore:
Timestamp:
Jun 5, 2018, 11:56:19 AM (6 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Update example branch name to release-2.5

Legend:

Unmodified
Added
Removed
Modified
  • WorkingWithGit

    v83 v84  
    332332Switch to the target branch of the cherry pick:
    333333{{{
    334 git checkout release-2.4
     334git checkout release-2.5
    335335}}}
    336336Cherry-pick the commit. It is good practice to pass `-x` to `git cherry-pick`, which will automatically add a "Cherry picked from commit <commmitID>" line to the commit message of your cherry pick. You will have the option to modify the commit message, e.g. to describe why the backport was necessary.