Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AnkhSVN shelves

I just setup AnkhSVN after having used TFS till now

What in AnkhSVN is the equivalent of shelves that I would create/use in TFS?

like image 865
kaivalya Avatar asked Jan 23 '23 06:01

kaivalya


1 Answers

The closest equivalent to shelving in Subversion is to create a branch and switch to it, commit your "work in progress", then switch back to the trunk. Later on you can merge from that "shelf branch" to get back to where you were. When evaluating TFS and Subversion before using either of them in anger I expected shelving to be really handy and an ability I'd miss in Subversion - but I've found that branching and switching is so simple in Subversion, it's actually quicker than using shelves anyway.

like image 149
Jon Skeet Avatar answered Jan 25 '23 21:01

Jon Skeet