Changes between Version 35 and Version 36 of HowToGit
- Timestamp:
- 05/22/19 12:58:30 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v35 v36 109 109 110 110 Alternative is to clone your fork and add osgeo as another remote ("option 2" - "clone fork" as opposed to "clone osgeo"). This would be the same as what !GitHub documentation suggests. See: [https://help.github.com/en/articles/fork-a-repo Fork a repo] and [https://help.github.com/en/articles/syncing-a-fork Syncing a fork] in !GitHub help. 111 == Keep your feature branchup to date ==111 == Keep your local source code up to date == 112 112 113 113 [from https://github.com/OSGeo/gdal/blob/master/CONTRIBUTING.md#working-with-a-feature-branch] … … 119 119 git fetch upstream 120 120 git rebase upstream/master 121 122 # if rebase fails with "error: cannot rebase: You have unstaged changes...", then move your uncommitted local changes to "stash" 123 git stash 124 # now you can rebase 125 git rebase upstream/master 126 # apply your local changes on top 127 git stash pop 121 128 }}} 122 129 123 Now do your changes and commit andpush them (ideally to a feature branch, see above).130 Continue do your changes and commit/push them (ideally to a feature branch, see above). 124 131 == Review of pull requests == 125 132