Changes between Version 76 and Version 77 of HowToGit
- Timestamp:
- 10/23/19 07:58:48 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v76 v77 152 152 153 153 # apply patch locally, continue committing as usual 154 git am < grass_code_changes.diff 154 git apply grass_code_changes.diff 155 git status 156 # ... commit etc. 155 157 156 158 # FYI - undo a local patch: 157 git a m --abort <grass_code_changes.diff159 git apply --reverse grass_code_changes.diff 158 160 }}} 159 161 == Fixing bugs in a release branch ==