Do you know you should always use a source control system?

Last updated by Sam Wagner [SSW] almost 2 years ago.See history

You should always use a source control system!

It is not for a backup, it is because changing code can introduce new bugs. Often these bugs are non-obvious and appear in a part of the system, far removed from your changes. They are especially useful when another developer made the breaking change.

So source code tracking allows you to see what changed recently to introduce a new bug. This dramatically reduces the time it takes to find and fix a newly introduced error.

Integrate your source control with your bug tracking tool

Source control works best when integrated with a task tracking system. SSW uses and recommends Microsoft Team Foundation Server which allows you to check in changes and link to the work item (Bug or Task)... all from within Visual Studio.

Tip: If your systems are not integrated automatically, you can still integrate manually by convention. Just quoting the work item or bug ID in comments, whenever a source code change is committed.

Whatever you use, your toolchain/process/IDE should fulfil the following user stories:

As a developer working on a code file

I want to easily view a file’s change history and navigate to the work items that were associated with the changes

So that I can fix a recently introduced bug quickly

As a senior software developer

I want to browse work items of junior developers, and have it linking/showing the code

So that I can easily review their recent code

We open source. Powered by GitHub