Source control vs. Revision Control?

Revision Control is the more generic term, used for source-control tools but also for other tools (Word, OpenOffice, …). It references a version. Source Control offers revision control with branching and merging which are not always available in all revision tools (Word is not a Source Control, but offer revision control features) Version Control is … Read more

How to mark an issue as resolved from the commit log?

Bitbucket already supports marking issues on commit using the Issues service. The issues service scans commit messages for commands which will automatically change the state of the relevant issue on the tracker. [snip] Examples: “… fixes #4711 …” # marks issue as resolved “… reopening bug 4711…” # marks issue as open “… refs ticket … Read more

ClearCase advantages/disadvantages [closed]

You can find a good comparison between ClearCase and Git in my SO answer: “What are the basic ClearCase concepts every developer should know?“, illustrating some major differences (and some shortcomings of ClearCase) File-centric operations The most single important shortcoming of ClearCase is its old “file-centric” approach (as opposed to “repository-centric” like in SVN or … Read more