Changes between Version 3 and Version 4 of HowToGit


Ignore:
Timestamp:
May 18, 2019, 3:51:42 AM (5 years ago)
Author:
mmetz
Comment:

+keep feature branch up to date

Legend:

Unmodified
Added
Removed
Modified
  • HowToGit

    v3 v4  
    9090This way origin is the authoritative source for the code, and additional remotes are forks.
    9191
     92== Keep your feature branch up to date ==
     93
     94[from https://github.com/OSGeo/gdal/blob/master/CONTRIBUTING.md#working-with-a-feature-branch]
     95You may need to resynchronize against master if you need some bugfix or new capability that has been added since you created your branch
     96
     97{{{
     98git fetch origin
     99git rebase origin/master
     100}}}
     101
    92102== Review of pull requests ==
    93103