Keith Adler
Keith Adler

Reputation: 21178

SVN sub-changeset commit?

I am using AnkhSVN in Visual Studio 2008 as a source control solution. I love to check out, edit and then re-commit partial changes as a way to ensure I never lose incremental progress. Is there anything smaller than a changeset that will allow me to check-in incremental changes as a way to ensure I don't lose them/overwrite them between changesets without having me creating 20 changesets in the process?

Upvotes: 2

Views: 139

Answers (1)

stimms
stimms

Reputation: 44046

Not in SVN, but what you can do is layer GIT in front of SVN. That way you can make a ton of local changes without having to push them up to SVN. It is also useful in shops which don't make proper use of branching, you can isolate yourself from the pollution of mainline. It also adds the ability to shelve changes in case you wnat to put some changes aside for later. Check out

http://blog.tsunanet.net/2007/07/learning-git-svn-in-5min.html

Upvotes: 3

Related Questions