What is a good alternative for SourceSafe on a USB Drive? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:39:15Z http://stackoverflow.com/feeds/question/134950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive 7 What is a good alternative for SourceSafe on a USB Drive? BlackWasp 2008-09-25T18:08:19Z 2009-01-07T14:53:16Z <p>I like to keep my source files on a USB drive for the portability. To date I have been using Visual SourceSafe for this purpose. What is a good alternative to VSS that fulfils these criteria:</p> <ul> <li>Entire database can be held on a USB "pen" drive</li> <li>Code / documentation duplicated on local drives</li> <li>Does not require a central server</li> <li>Easy to backup and restore using standard backup tools</li> <li>Integrates with Visual Studio</li> <li>Has a small footprint</li> <li>Easy to clean the database and keep small</li> <li>Compatible with Windows XP, Vista and Vista x64</li> </ul> <p>A good reference on setup would be good too.</p> <h2>UPDATE</h2> <p>I went with Subversion in the end (TortoiseSVN). It has been pretty robust so far so I would recommend it for people with the same problem.</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134955#134955 3 Answer by Kevin for What is a good alternative for SourceSafe on a USB Drive? Kevin 2008-09-25T18:09:10Z 2008-09-25T18:14:45Z <p>Don't use SourceSafe. There's major problems with it. See this:</p> <ul> <li><a href="http://www.highprogrammer.com/alan/windev/sourcesafe.html" rel="nofollow">Article1</a></li> <li><a href="http://www.developsense.com/testing/VSSDefects.html" rel="nofollow">Article2</a></li> </ul> <p>I'd recommend using SubVersion instead.</p> <p>If you're using Windows, you can use <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a>.</p> <p>If you're working on Linux or other Unix variants, try <a href="http://rapidsvn.tigris.org/" rel="nofollow">RapidSVN</a>.</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134970#134970 1 Answer by mgb for What is a good alternative for SourceSafe on a USB Drive? mgb 2008-09-25T18:11:42Z 2008-09-25T18:11:42Z <p>There are two common free front-ends <a href="http://ankhsvn.open.collab.net/" rel="nofollow">Ankhsvn</a> integrates into visual studio and <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> integrates with explorer ( my preference). There is also sliksvn a self contained svn server for windows.</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134980#134980 8 Answer by Benoit for What is a good alternative for SourceSafe on a USB Drive? Benoit 2008-09-25T18:13:55Z 2008-09-25T18:26:28Z <p>I would use SVN (Subversion). </p> <p>You can use SVN in "file" mode (w/o using the network). combine this with tortoiseSVN, which integrates to explorer, and you have a nice little portable repository.</p> <p>For Visual Studio integration, there is the commercial($49) VisualSVN (which I believe is the setup used to develop StackOverflow).</p> <p>Someone also mentioned AnkhSVN which I haven't used, but some people find it less than satisfying.</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134995#134995 3 Answer by Chris Charabaruk for What is a good alternative for SourceSafe on a USB Drive? Chris Charabaruk 2008-09-25T18:15:50Z 2008-09-25T18:15:50Z <p>Use Subversion. The FSFS style repository will work best as older BDB ones can have issues when moved from computer to computer. With AnkhSVN you'll have full integration with Visual Studio (AnkhSVN 2.x is a source control plugin; older versions still do the job, though).</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134996#134996 1 Answer by Blend Master for What is a good alternative for SourceSafe on a USB Drive? Blend Master 2008-09-25T18:16:00Z 2008-09-25T18:16:00Z <p>I'd recommend SubVersion as well - you can find a hosting provider who offers SVN for really cheap, this way your source code is always backed up and available, all you need to keep on your flash drive is SVN client...</p> http://stackoverflow.com/questions/134950/what-is-a-good-alternative-for-sourcesafe-on-a-usb-drive/134999#134999 2 Answer by Charles Duffy for What is a good alternative for SourceSafe on a USB Drive? Charles Duffy 2008-09-25T18:16:09Z 2008-09-25T18:16:09Z <p><A HREF="http://bazaar-vcs.org/" rel="nofollow">Bazaar</A> does what you're asking for (in terms of working very well standalone), and there was a 2007 Summer of Code project to build <A HREF="https://launchpad.net/bzr-visualstudio" rel="nofollow">a Visual Studio integration plugin</A> which appears to have <A HREF="https://lists.ubuntu.com/archives/bazaar/2007q3/027836.html" rel="nofollow">produced an at-least-partially-functional product</A>.</p> <p>Bazaar (and other distributed tools, such as Git, Mercurial, Darcs and the like) are ideal because you can have your repository stored in multiple places (ie. on your pen drive, but also copied up to a server on a regular basis), make changes in one or the other branch (let's say you leave your pen drive at home -- you can build changes against the copy on a remote server, upload them via WebDAV, SFTP, etc, and be able to seamlessly merge them into changes done locally to the pen drive; non-distributed solutions such as Subversion don't have that capability).</p>