Experience with local version control of SVN working copy? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-15T14:28:47Z http://stackoverflow.com/feeds/question/601609 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy 3 Experience with local version control of SVN working copy? Niklas http://stackoverflow.com/users/15323 2009-03-02T08:19:56Z 2009-03-02T09:59:03Z <p>At my place of work, we use SVN and TortoiseSVN (Windows XP) as a client. I have a longish commute and work offline during that.<br /> Now, I'd like to have some sort of "extended undo" locally; i.e. I would like to have local version control of my SVN working copy, in order to dare to refactor for example.<br /> Switching altogether to e.g. git, mercurial etc. is not an option as the company uses SVN. </p> <p>What I'd like to know is if someone has any experience in versioning the local SVN working copy, perhaps by running a local git or similar?<br /> Are there any potential drawbacks? (perhaps messing with .svn folders or similar)</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601625#601625 3 Answer by Greg Hewgill for Experience with local version control of SVN working copy? Greg Hewgill http://stackoverflow.com/users/893 2009-03-02T08:27:00Z 2009-03-02T08:27:00Z <p>I use Git as a local Subversion client for work and it works great. When you do a <code>git svn clone</code> of a Subversion repository, the checkout you get does not have the hidden <code>.svn</code> directories, but instead is a complete Git repository in its own right. The ability to use local, lightweight branches to organise my own development is a killer feature for me.</p> <p>Other features I use all the time are <code>git stash</code>, staged commits, and <code>git add -p</code>.</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601627#601627 0 Answer by David Hanak for Experience with local version control of SVN working copy? David Hanak http://stackoverflow.com/users/42136 2009-03-02T08:28:07Z 2009-03-02T08:28:07Z <p>Last time I checked the status of SVN, local checkin support was still a long-term feature plan. Git, on the other hand, is definitely an option, with git-svn. That is, if your architecture is Unix, AFAIK, git-svn is not supported yet on the Windows platform.</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601629#601629 1 Answer by Jeremy Edwards for Experience with local version control of SVN working copy? Jeremy Edwards http://stackoverflow.com/users/42005 2009-03-02T08:28:41Z 2009-03-02T08:28:41Z <p>You can create a snapshot of the work using svn export and then creating your own subversion repository and use the snapshot from the work repository as the initial checkin.</p> <p>Then you can make your changes and use subversion (your local repository copy) until your done. Of course you may do some regular merging from the main work repository to make sure your content is up to date. Lastly, when your refectoring is done simply do an svn export snapshot of your local repository and merge it back into your main work repository.</p> <p>This is a bit crude but this is the only way to manage this type of work flow.</p> <p>If you have regular enough access to work. You can create a branch of the content and work on the branch from the work repository exclusively and use the the local repository method when you need your extended undo functionality. At this point of course using a local version control system won't limit you to subversion so take your pick.</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601630#601630 0 Answer by Joonas Pulakka for Experience with local version control of SVN working copy? Joonas Pulakka http://stackoverflow.com/users/59279 2009-03-02T08:28:52Z 2009-03-02T08:28:52Z <p>Nothing prevents from running local SVN server. I'm using it that way.</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601631#601631 0 Answer by VonC for Experience with local version control of SVN working copy? VonC http://stackoverflow.com/users/6309 2009-03-02T08:29:07Z 2009-03-02T08:29:07Z <p>Git would be a good solution (because you can make and merge many branches very easily) but:</p> <ul> <li>when re-importing your modification to svn, you should cleanup first the many intermediate branches you created under git;</li> <li>git-svn does not work with the Windows distribution of Git, so you may want to use a Linux virtual image if you are working on Windows</li> <li>If you can make git-svn running, use git2svn et svn2git ruby scripts, as described in <a href="http://stackoverflow.com/questions/572893/cloning-a-non-standard-svn-repository-with-git-svn/572898#572898">this question</a></li> </ul> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601687#601687 1 Answer by Marcin Gil for Experience with local version control of SVN working copy? Marcin Gil http://stackoverflow.com/users/5731 2009-03-02T09:02:14Z 2009-03-02T09:02:14Z <p>I usually do like this:</p> <ol> <li>Get SVN repository as working copy.</li> <li>Initialize Git repository in this working copy.</li> <li>Hack hack hack;</li> <li>Commit to my Git repo.</li> <li>Update from company SVN.</li> <li>Resolve conflicts.</li> <li>Commit to company SVN repo a complete feature.</li> </ol> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy/601812#601812 1 Answer by Aaron Digulla for Experience with local version control of SVN working copy? Aaron Digulla http://stackoverflow.com/users/34088 2009-03-02T09:59:03Z 2009-03-02T09:59:03Z <p>You may want to try <a href="http://svk.bestpractical.com/view/HomePage" rel="nofollow">SVK</a> which a decentralized VCS based on subversion. It can be used to mirror the official repository on your laptop and the synchronize your commits with the official trunk.</p>