Changes between Version 44 and Version 45 of HowToGit
- Timestamp:
- 05/24/19 04:37:09 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v44 v45 120 120 '''- to be discussed -''' 121 121 122 Direct commits are allowed, but you can still use alternatively the same workflow as defined for [HowToGit#Workflowforcoregrassrepository core repository based on PR ].122 Direct commits are allowed, but you can still use alternatively the same workflow as defined for [HowToGit#Workflowforcoregrassrepository core repository based on PRs]. 123 123 124 124 One time only: … … 140 140 # assuming that "origin" points to OSGeo/grass-addons 141 141 git fetch origin 142 # IMPORTANT - ALWAYS REBASE IN ORDER TO AVOID NOT NEEDED MERGE COMMITS (!!!) 142 143 git rebase origin/master 143 144