Posts Tagged ‘version control’

Version Control with Mercurial, Apache and TortoiseHG

by posted on May 13th, 2010 in Development

I recently started a new software project – a game engine.  Even though the current development team is a single programmer, I need a version control system (VCS) that will:

  • allow me to manage multiple repositories (with independent branching, tags, etc.)
  • allow me to synchronize code across hardware and software platforms
  • backup the entire repository on multiple machines (for safety reasons)
  • easily allow me to add/manage contributors in the future

After some research, I chose Mercurial.  If you are reading this article, you have also chosen Mercurial.  If you do not know what Mercurial is, or are unfamiliar with distributed version control systems, go here.  The rest of you can continue reading.

(more…)