Changes between Version 21 and Version 22 of HowToGit
- Timestamp:
- 05/18/19 09:15:49 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v21 v22 55 55 git commit -m 'my change with reasonable explanation...' 56 56 57 # push feature branch to origin, i.e. original GRASS GIS repo master57 # push feature branch to origin, i.e. your fork of the OSGeo/grass repo 58 58 git push origin $feature_branch_name 59 # create pull request in GitHub Web interface (the link is shown in 60 the terminal) 59 # create pull request in GitHub Web interface (the link is then shown in the terminal) 61 60 62 61 # during PR review phase, make more local changes if needed