Changes between Version 82 and Version 83 of HowToGit
- Timestamp:
- 12/23/19 05:24:59 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToGit
v82 v83 298 298 Importantly, not always commits of each and every PR need to be squashed before merging. When extensive changes are being made, it often makes sense to keep them unsquashed (e.g. to make reviewing easier), but trivial fixes should still be squashed to the main commits. 299 299 300 === Citing co-authors in a git commit message === 301 302 For co-authors, it is suggested using `Co-authored-by` at the end of the commit message: 303 304 {{{ 305 ... 306 307 Co-authored-by: name <name@example.com> 308 }}} 309 310 An empty line (i.e., two new lines) is necessary and sufficient (GitHub documentation is little confusing there, but the generally that's what's accepted). 300 311 == Further reading == 301 312