Shelves AnkhSVN

I just installed AnkhSVN after using TFS so far

What in AnkhSVN is the equivalent of a shelf that I will create / use in TFS?

+4
source share
2 answers

The closest equivalent to shelving in Subversion is creating a branch and switching to it, fixing your “work in progress”, and then moving to the outside line. Later you can merge with this “offshore branch” to return to where you were. When you evaluate TFS and Subversion before using any of them in anger, I expected the racks to be really convenient, and the ability that I would miss in Subversion, but I found that branching and switching in Subversion are so simple which is actually faster than using a shelf anyway.

+5
source

Subversion currently does not have a function equivalent to rack changes in TFS.

It would be best to create several parallel branches for different functions and merge the branches back into your trunk when the corresponding functions / changes are completed.

The following blog post has a lot of information on how to do this: http://markphip.blogspot.com/2007/01/shelves-in-subversion.html

+4
source

All Articles