Changes between Version 50 and Version 51 of HowToGit
- Timestamp:
- 05/28/19 05:37:05 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v50 v51 181 181 # now all should be clean again 182 182 }}} 183 183 184 == Merging of Pull Requests == 184 185 … … 189 190 === PR with single commit === 190 191 191 **Proposed**: when a PR only has a single commit, the "merge commit" doesn't offer anything and it can be avoided by rebasing the feature branch. 192 **Proposed**: when a PR only has a single commit, the "merge commit" doesn't offer anything and it can be avoided by rebasing the feature branch: 193 194 Workflow: !GitHub > button "Merge pull request" > "Rebase and merge" 195 196 Next, you may locally delete the feature branch. 192 197 193 198 === PR with multiple commits ===