Demiurge Development Guidelines
From IridiaWiki
Revision as of 13:45, 18 September 2019 by KenHasselmann (talk | contribs) (Created page with "== General rules == # Don't talk the git club # Useful commit messages are required, (at least on master branches, or when merging to it) # Never commit directly to the master...")
General rules
- Don't talk the git club
- Useful commit messages are required, (at least on master branches, or when merging to it)
- Never commit directly to the master branch
- Bug fixes should be done in the dev branch
- New developments should be done in your own branch (branching from the dev branch)
- When development is finished and your code is stable merge your branch into the dev branch
- Make sure your commit history is clean before merge into the dev branch (git rebase -i is your friend)
- After merging, delete any useless branch
- The master branch will be updated regularly based on the dev branch