Changes between Version 76 and Version 77 of HowToGit


Ignore:
Timestamp:
Oct 23, 2019, 7:58:48 AM (5 years ago)
Author:
neteler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v76 v77  
    152152
    153153# apply patch locally, continue committing as usual
    154 git am < grass_code_changes.diff
     154git apply grass_code_changes.diff
     155git status
     156# ... commit etc.
    155157
    156158# FYI - undo a local patch:
    157 git am --abort  < grass_code_changes.diff
     159git apply --reverse grass_code_changes.diff
    158160}}}
    159161== Fixing bugs in a release branch ==