Changes between Version 24 and Version 25 of HowToGit
- Timestamp:
- 05/18/19 09:30:26 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v24 v25 48 48 49 49 # create new local branch (pick a new name for feature_branch_name) 50 git checkout -b $feature_branch_name50 git checkout -b feature_branch_name 51 51 52 52 # list local changes … … 56 56 57 57 # push feature branch to origin, i.e. your fork of the OSGeo/grass repo 58 git push origin $feature_branch_name58 git push origin feature_branch_name 59 59 # create pull request in GitHub Web interface (the link is then shown in the terminal) 60 60 … … 62 62 git add . 63 63 git commit -m 'my second change' 64 git push origin $feature_branch_name64 git push origin feature_branch_name 65 65 # ..... will be added to existing pull request 66 66 }}}