Nice Version Control

From FreekiWiki
Revision as of 09:19, 30 August 2005 by Vagrant (talk | contribs) (actual content)
Jump to navigation Jump to search

very basic and generic guidelines for working with others using a revision control system:

update your working copy before modifying anything

always diff before you commit, to avoid committing anything unintentionally

commit smaller, logically grouped changes together- this makes it easier to revert a specific change without reverting unrelated stuff, too.

avoid conflicts when possible by knowing who's working on what parts

when implementing major changes, check in with others working on the project

try to implement major changes in a branch first

keep branches in sync, to make it easier to merge back into mainline