Guidelines - xamgems/UWSchedule GitHub Wiki

Git

Branch Naming Convention

Branches should be prefixed with a label that defines the type of the branch.
Labels are as follows:

  • wip : for work in progress
  • bug : for bug fixes

Local Repo practices

  • Work on a branch unless it is a very minor fix. When in doubt, work on a branch.
    (This makes it easier to fix, if a bug occurs)

Remote Repo practices

  • Always check for remote updates before committing.
  • Before pushing, git rebase and cleanup your code.
  • Before pushing, run some tests!