Is there a barebones Windows version control system that's suitable for only one guy? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:42:15Z http://stackoverflow.com/feeds/question/49601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one 16 Is there a barebones Windows version control system that's suitable for only one guy? Mike 2008-09-08T12:46:57Z 2009-04-03T15:43:16Z <p>Hi everyone, I'm trying to find a source control for my own personal use that's as simple as possible. The main feature I need is being able to read/pull a past version of my code. I am the only developer. I've looked at a lot of different version control systems, but they all seem way more complicated than I need. I need one that's simple, runs under Windows, and doesn't expose itself to the network.</p> <p>Specifically, the version control system should <em>not</em> require exposing an HTTP interface, it should interact with the local filesystem only. It just needs to be a version control system geared for one guy and one guy only. Graphical UI is a plus.</p> <p>Does anyone know of software would satisfy what I'm looking for?</p> <p>Thanks!</p> <p>-Mike</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49605#49605 0 Answer by Biri for Is there a barebones Windows version control system that's suitable for only one guy? Biri 2008-09-08T12:48:59Z 2008-09-08T12:48:59Z <p>You should check <a href="http://www.cvsnt.org/" rel="nofollow">CVSNT</a> as server and use any of the clients you would like (standalone or integrated with your IDE). There are plenty of them.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49606#49606 36 Answer by Ryan Lanciaux for Is there a barebones Windows version control system that's suitable for only one guy? Ryan Lanciaux 2008-09-08T12:49:13Z 2008-09-08T12:49:13Z <p><a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> is great -- you can run the server yourself our use something like <a href="http://www.assembla.com" rel="nofollow">http://www.assembla.com</a> to host your code (although that exposes it to the network).</p> <p>There are numerous gui applications like <a href="http://tortoisesvn.tigris.org/" rel="nofollow">tortoise svn</a> that would allow you to interact w/ the source control repo</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49608#49608 5 Answer by Matt Sheppard for Is there a barebones Windows version control system that's suitable for only one guy? Matt Sheppard 2008-09-08T12:49:44Z 2008-09-08T12:49:44Z <p><a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> with <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a>.</p> <p>Like all version control systems, it will sound reasonably complex when you start off, but it's really very simple once you get into it, works well for a single developer, and doesn't require any network access if you don't want it to.</p> <p>Plus, it's free.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49611#49611 2 Answer by Mark Biek for Is there a barebones Windows version control system that's suitable for only one guy? Mark Biek 2008-09-08T12:50:52Z 2008-09-08T12:50:52Z <p>You really can't get much easier than <a href="http://www.visualsvn.com/" rel="nofollow">VisualSVN</a> for version control on Windows.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49627#49627 0 Answer by BrianP for Is there a barebones Windows version control system that's suitable for only one guy? BrianP 2008-09-08T12:55:04Z 2009-04-03T15:43:16Z <p>I have heard of a hosted Subversion vendor Versionshelf (<a href="http://www.versionshelf.com" rel="nofollow">http://www.versionshelf.com</a>) on a podcast I listen to.</p> <p>This site also has a list: <a href="http://snook.ca/archives/servers/hosted_subversion/" rel="nofollow">http://snook.ca/archives/servers/hosted_subversion/</a></p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49631#49631 0 Answer by rams for Is there a barebones Windows version control system that's suitable for only one guy? rams 2008-09-08T12:55:45Z 2008-09-08T12:55:45Z <p>Use Visual SVN to setup your server and then use Tortoise to access your repository. Both are free to use and we have been successfully using it for quite sometime now.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49650#49650 8 Answer by Chris Upchurch for Is there a barebones Windows version control system that's suitable for only one guy? Chris Upchurch 2008-09-08T13:00:13Z 2008-09-08T13:00:13Z <p><a href="http://sourcegear.com/vault/index.html" rel="nofollow">Sourcegear Vault</a> is free for a single user and you can run both the client and the server on your own machine.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49657#49657 2 Answer by Gorgapor for Is there a barebones Windows version control system that's suitable for only one guy? Gorgapor 2008-09-08T13:04:16Z 2008-09-08T13:04:16Z <p>I like to use <a href="http://code.google.com/" rel="nofollow">Google Code</a>, even for my one man projects, as it provides a Subversion repository already set up. Also, the server is offsite, which protects against hard drive failures and other disasters.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49665#49665 0 Answer by nickd for Is there a barebones Windows version control system that's suitable for only one guy? nickd 2008-09-08T13:08:15Z 2008-09-08T13:08:15Z <p>@<a href="#49657" rel="nofollow">gorgapor</a>: Doesn't the Google Code TOS specify an open source license? It's not a generally applicable solution in that case.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49704#49704 1 Answer by Zack Peterson for Is there a barebones Windows version control system that's suitable for only one guy? Zack Peterson 2008-09-08T13:27:04Z 2008-09-08T13:27:04Z <p>I use <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> and <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> &mdash; both are free. Your repository can be on the local machine. You don't have to work over a network.</p> <p>However, for disaster recovery or even simple machine fault, it's probably a good idea to store your repository on a different computer and also back it up.</p> <p>You might want to consider using a third party service to host your repositories off-site over the internet. I use <a href="http://cvsdude.com/" rel="nofollow">CVSDude</a> and am satisfied.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49707#49707 1 Answer by Readonly for Is there a barebones Windows version control system that's suitable for only one guy? Readonly 2008-09-08T13:27:39Z 2008-09-08T13:27:39Z <p>You might find <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a> to be pretty nice for that purpose. You won't have to set up a server and creating the repository is as simple as doing "hg init" in the directory where your work is. </p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49712#49712 1 Answer by y0mbo for Is there a barebones Windows version control system that's suitable for only one guy? y0mbo 2008-09-08T13:29:23Z 2008-09-08T13:29:23Z <p>I am also a lone developer, and I use Subversion and TortoiseSVN.</p> <p>Setup of Subversion is quick and painless; it can be done in less than half an hour including setting up the repository.</p> <p>There is no requirement by Subversion to run on a server, I actually run it on my local machine and keep my repositories on a separate drive. Connecting to the repository uses svn:// instead of http://. I'm not sure why you require that it does not expose itself to the network, but this would be a matter of security via obscurity. I'm sure networking experts could suggest better methods for locking it down, should that be necessary.</p> <p>Once the repository has been created, commits and updates from the repository are as simple as right-clicking on a folder in Windows Explorer.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49714#49714 8 Answer by Erik van Brakel for Is there a barebones Windows version control system that's suitable for only one guy? Erik van Brakel 2008-09-08T13:29:54Z 2008-09-08T13:29:54Z <p>From what I understand, and at the risk of sounding like a fanboy, you might want to consider a DVCS (distributed version control system) like git or mercurial. They essentially take away the central repository part, so it should be ideal to use when you're a solo developer.</p> <p>Another advantage is that when you decide to add people to your one-man team, you don't have to set up a central repository. All they have to do is clone your repository and they're good to go!</p> <p>If you're windows based and are used to a shell plugin like TortoiseSVN I'd pick mercurial. Their windows integration is just a bit better than git's, using TortoiseHg. The git counterpart (cheetah) is on hold at the moment, due to the developer getting sick and tired of all the demands people were making ;-)</p> <p>If DVCS is too exotic for this situation you could always rely on SVN. I've heard good stories about the already mentioned VisualSVN solution. Install, make some repositories and go. Install TortoiseSVN for shell integration, or perhaps Subclipse or ankhSVN for eclipse and visual studio, respectively.</p> <p>Note: I have not actually tried git or mercurial in a real life project, just some test setups. I now have a simple project WITH version control (using mercurial in my case), without having to have access to a central repository.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49715#49715 3 Answer by Aardvark for Is there a barebones Windows version control system that's suitable for only one guy? Aardvark 2008-09-08T13:30:07Z 2008-09-08T13:30:07Z <p>I use the free (2 user?) licence of <a href="http://www.perforce.com" rel="nofollow">Perforce</a>. Powerful, fast, and well documented.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49722#49722 1 Answer by Vinko Vrsalovic for Is there a barebones Windows version control system that's suitable for only one guy? Vinko Vrsalovic 2008-09-08T13:35:52Z 2008-09-08T13:35:52Z <p>Any distributed revision control system is best for lone developers, like git or Mercurial. Best thing is you can incorporate more developers to your project seamlessly, as opposed to having to give them access to your main centralized SVN or CVS repository.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49730#49730 2 Answer by David Sykes for Is there a barebones Windows version control system that's suitable for only one guy? David Sykes 2008-09-08T13:42:03Z 2008-09-08T13:42:03Z <p>All the previous suggestions are pretty simple, and I know cvs is a bit out of vogue these days, but I like to use it's local mode for a repository that doesn't even need a server to install or set up. The repository can be anywhere on your hard drive. I have mine on a memory stick to have access to it anywhere even without an internet connection.</p> <p>The key commands are:</p> <p><strong>cvs -d:local:/full/path/repository init</strong></p> <p>to create the repository</p> <p><strong>mkdir /full/path/repository/project</strong></p> <p>to create the module, and</p> <p><strong>cvs -d:local:/full/path/repository/cvs co project</strong></p> <p>to check out a local version.</p> <p><a href="http://www.tortoisecvs.org/" rel="nofollow">TortoiseCVS</a> gives you your Graphical UI</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49742#49742 2 Answer by David Schmitt for Is there a barebones Windows version control system that's suitable for only one guy? David Schmitt 2008-09-08T13:48:47Z 2008-09-08T13:58:12Z <p>I'm a very satisfied user <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a> for Windows. It contains a recent copy of git as well as a GUI, a shell and a history browser in a single install package.</p> <p>No need for a server component and if you <em>do</em> decide to host it somewhere your repository is signed and cannot be modified by the hoster without you seeing it. Finally, moving the repo to a server is a easy "push" operation which keeps all of your history.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49750#49750 2 Answer by Bmore for Is there a barebones Windows version control system that's suitable for only one guy? Bmore 2008-09-08T13:54:34Z 2008-09-08T13:54:34Z <p>Bazaar. See <a href="http://doc.bazaar-vcs.org/latest/en/mini-tutorial/index.html" rel="nofollow">Bazaar in five minutes</a> for a great start.</p> <p>Whenever you save a file, run the <code>$ bzr commit -m "Added first line of text"</code> command, and it's all taken care.</p> <p>If you edit over FTP, make the FTP folder as a drive or folder, and <code>bzr update</code> after the commit.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49763#49763 2 Answer by Andrew Burns for Is there a barebones Windows version control system that's suitable for only one guy? Andrew Burns 2008-09-08T14:03:51Z 2008-09-08T14:03:51Z <p>+1 for Subversion, for those not familiar with it I would recommend the <a href="http://svnbook.red-bean.com/" rel="nofollow">SVN Book</a>.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49808#49808 2 Answer by LaptopHeaven for Is there a barebones Windows version control system that's suitable for only one guy? LaptopHeaven 2008-09-08T14:30:50Z 2008-09-08T14:30:50Z <p><a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN Server</a> is a complete installer for Subversion Server on Windows.</p> <p><a href="http://www.visualsvn.com/visualsvn/" rel="nofollow">VisualSVN</a> is a Visual Studio plugin for Subversion integration. </p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49842#49842 1 Answer by bill weaver for Is there a barebones Windows version control system that's suitable for only one guy? bill weaver 2008-09-08T14:45:20Z 2008-09-08T14:45:20Z <p>SVN and TortoiseSVN work for me. Definitely ensure you have offsite backup.</p> <p>You might want to check out the wiki article <a href="http://en.wikipedia.org/wiki/Comparison_of_revision_control_software" rel="nofollow">Comparison of revision control software</a>. A (slightly hard-to-read) <a href="http://www.versioncontrolblog.com/comparison/" rel="nofollow">comparison tool</a> might help. You might enjoy <a href="http://changelog.complete.org/posts/698-If-Version-Control-Systems-were-Airlines.html" rel="nofollow">If Version Control Systems Were Airlines</a>.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49860#49860 2 Answer by Jim Harte for Is there a barebones Windows version control system that's suitable for only one guy? Jim Harte 2008-09-08T14:51:05Z 2008-09-08T14:51:05Z <p>For what it's worth, you can use Subversion &amp; TortoiseSVN without a server using file:/// URLs to connect to you repository. I've done this to create repositories on USB thumb drives that I can move from machine to machine.</p> <p>Here's a nice write-up: <a href="http://www.fredshack.com/docs/tortoisesvn.html" rel="nofollow">http://www.fredshack.com/docs/tortoisesvn.html</a></p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/49867#49867 0 Answer by Isaac for Is there a barebones Windows version control system that's suitable for only one guy? Isaac 2008-09-08T14:56:29Z 2008-09-08T14:56:29Z <p>I haven't seen anyone mention Perforce. Perforce allows you to use their software for up-to 2 users for free. You can run the server and clients in the same machine, which will give you the environment that you want.</p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/138823#138823 0 Answer by Anthony for Is there a barebones Windows version control system that's suitable for only one guy? Anthony 2008-09-26T11:16:43Z 2008-09-26T11:25:53Z <p>This is much the same question as <a href="http://stackoverflow.com/questions/45400/source-control-system-for-single-developer">Source control system for single developer</a></p> <p>The bottom line is: yes there is. More than one. <br> My opinion is that SVN will do just fine. it does for me in similar cases, as described here: <a href="http://blogs.conchango.com/anthonysteele/archive/2006/11/05/Single-serving-source-control.aspx" rel="nofollow">Single serving source control</a> </p> http://stackoverflow.com/questions/49601/is-there-a-barebones-windows-version-control-system-thats-suitable-for-only-one/138898#138898 0 Answer by macbirdie for Is there a barebones Windows version control system that's suitable for only one guy? macbirdie 2008-09-26T11:35:14Z 2008-09-26T11:35:14Z <p>You could go with <a href="http://selenic.com/mercurial" rel="nofollow">Mercurial</a>.</p> <ul> <li>It's very easy to start working with and there's TortoiseHg which integrates nicely with Windows shell.</li> <li>You don't need a server for it as it's a distributed version control system - you can hold a whole repository copy on a flash drive and push/pull changes from it. </li> <li>If you wish, you can put hg in a web server mode that makes the repository easily accessible over http.</li> <li>As opposed to SVN and CVS, it doesn't spread its metadata directories all over the repository. There's just one .hg directory in repository root.</li> </ul> <p>I use it daily and love it!</p>