Changes between Version 28 and Version 29 of DevNotes/DevGuide/CodingRules
- Timestamp:
- Jul 5, 2016 9:49:46 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v28 v29 190 190 * Remember to add files using git add before committing your changes. 191 191 * Have a self-explanatory commit message. "Merged with master" is not sufficient. It is a good practice to do a git log before pushing to master and check for the top message. git commit --amend can be used to fix commit message if we are not satisfied with it. 192 Using git branches is encouraged when developing new features or implementing significant changes. It is also a good habit to regularly merge you branch with master as well as push it Github (as a backup).192 * Using git branches is encouraged when developing new features or implementing significant changes. It is also a good habit to regularly merge you branch with master as well as push it Github (as a backup). 193 193 * When merging a branch with multiple commits use --squash or interactively rebase before pushing to master. 194 194