Changes between Version 35 and Version 36 of HowToGit


Ignore:
Timestamp:
May 22, 2019, 12:58:30 PM (5 years ago)
Author:
neteler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v35 v36  
    109109
    110110Alternative 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 branch up to date ==
     111== Keep your local source code up to date ==
    112112
    113113[from https://github.com/OSGeo/gdal/blob/master/CONTRIBUTING.md#working-with-a-feature-branch]
     
    119119git fetch upstream
    120120git rebase upstream/master
     121
     122# if rebase fails with "error: cannot rebase: You have unstaged changes...", then move your uncommitted local changes to "stash"
     123git stash
     124# now you can rebase
     125git rebase upstream/master
     126# apply your local changes on top
     127git stash pop
    121128}}}
    122129
    123 Now do your changes and commit and push them (ideally to a feature branch, see above).
     130Continue do your changes and commit/push them (ideally to a feature branch, see above).
    124131== Review of pull requests ==
    125132