Experience with local version control of SVN working copy? - Stack Overflow most recent 30 from stackoverflow.com2010-03-15T14:28:47Zhttp://stackoverflow.com/feeds/question/601609http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy3Experience with local version control of SVN working copy?Niklashttp://stackoverflow.com/users/153232009-03-02T08:19:56Z2009-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#6016253Answer by Greg Hewgill for Experience with local version control of SVN working copy?Greg Hewgillhttp://stackoverflow.com/users/8932009-03-02T08:27:00Z2009-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#6016270Answer by David Hanak for Experience with local version control of SVN working copy?David Hanakhttp://stackoverflow.com/users/421362009-03-02T08:28:07Z2009-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#6016291Answer by Jeremy Edwards for Experience with local version control of SVN working copy?Jeremy Edwardshttp://stackoverflow.com/users/420052009-03-02T08:28:41Z2009-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#6016300Answer by Joonas Pulakka for Experience with local version control of SVN working copy?Joonas Pulakkahttp://stackoverflow.com/users/592792009-03-02T08:28:52Z2009-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#6016310Answer by VonC for Experience with local version control of SVN working copy?VonChttp://stackoverflow.com/users/63092009-03-02T08:29:07Z2009-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#6016871Answer by Marcin Gil for Experience with local version control of SVN working copy?Marcin Gilhttp://stackoverflow.com/users/57312009-03-02T09:02:14Z2009-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#6018121Answer by Aaron Digulla for Experience with local version control of SVN working copy?Aaron Digullahttp://stackoverflow.com/users/340882009-03-02T09:59:03Z2009-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>