Changes between Version 82 and Version 83 of WorkingWithGit


Ignore:
Timestamp:
Oct 6, 2017, 5:22:04 PM (7 years ago)
Author:
raimue (Rainer Müller)
Comment:

Fix example branch name

Legend:

Unmodified
Added
Removed
Modified
  • WorkingWithGit

    v82 v83  
    332332Switch to the target branch of the cherry pick:
    333333{{{
    334 git checkout release_2_3
     334git checkout release-2.4
    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.