Changes between Version 75 and Version 76 of HowToGit
- Timestamp:
- 10/23/19 07:52:43 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v75 v76 140 140 !GitHub provides command line instructions under each pull request ([https://github.com/OSGeo/grass/pulls "Pulls" tab]). Please check there. 141 141 142 === Applying a diff file locally === 143 144 Patching local repo with `git`: 145 146 {{{ 147 # first the stats about the patch (see what would be changed) 148 git apply --stat grass_code_changes.diff 149 150 # dry run to detect errors (should be none): 151 git apply --check grass_code_changes.diff 152 153 # apply patch locally, continue committing as usual 154 git am < grass_code_changes.diff 155 156 # FYI - undo a local patch: 157 git am --abort < grass_code_changes.diff 158 }}} 142 159 == Fixing bugs in a release branch == 143 160