vote up 5 vote down star
1

What I currently do is I link the project to another location and give it the same name, then check the box where it says "Branch after share." And then I would Check out the shared project and work off it. And finally merge with the original project.

This works okay, but it feels very clunky: I have multiple instances of the project on my drive; I have to change physical address of the website (i use asp.net 1.1) every time I work on a different branch;

That doesn't feel like the right way to do it. How do you branch your projects with VSS?

flag

32% accept rate
With all of the far superior (and above all free) source control software choices out there, why in this day and age are you still using SourceSafe? – Yadyn Sep 16 '08 at 0:19
SourceSafe remains a simple and cheap alternative to other (possibly more complex) source control systems. It is good when your project remains extremely small and does not significantly change over time. – Joseph Daigle Sep 16 '08 at 0:21
I'm sorry Joseph, but I'm with Yadyn... nothing is cheaper than free, and subversion is pretty damn intuitive and easy to use, and works mighty well on small or large projects (I've used it for both). Not to mention git is a pretty good option too... – Mike Stone Sep 16 '08 at 0:26
If you're using Visual Studio there is a pretty good chance you've got a license for Source Safe also. I'm not trying to say it's better than alternatives. I'm simply saying it's not completely useless. – Joseph Daigle Sep 16 '08 at 0:50
VSS has a greater than zero chance of corrupting your source code and losing data. As a source control system, it is totally useless. – 1800 INFORMATION Sep 16 '08 at 1:02
show 2 more comments

4 Answers

vote up 2 vote down

I think the way you describe in the question is the only way you can do it in sourceSafe.

I usually name the copied directory "V1.0" (or whatever is appropriate) and keep them all in a folder that is the main project name.

link|flag
vote up 0 vote down

The way you described is the only supported way to do "branching". And as you pointed out it is rather clunky. In VSS it's best to avoid branching alltogether as it will destroy your source history.

link|flag
I don't know if "destroy your source history" is true, based on the way the question writer said he did the branch. – jm Sep 20 '08 at 3:45
vote up 1 vote down

I'm just going to come out and say it. Don't use VSS. But if you have to, then don't branch. Or merge. It's not worth the virtual certainty of corruption.

link|flag
vote up 3 vote down

That is the generally accepted way of branching your source code in SourceSafe. The only other way to do it, if merging and retaining the history are not an issue, is to copy the files to a new folder, remove the read-only attribute, remove the .vssscc and .scc files, and then add that new project to SourceSafe. At that point, you have an all new project, with no prior history.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.