visual-sourcesafe

Combine DVCS with Visual Source Safe

不羁岁月 提交于 2019-12-03 03:54:37
问题 I'm forced to use Visual Source Safe 2005 at work. I'd like to combine that with a DVCS, so that I can check in files locally without disrupting my co-workers if there's a bug or it doesn't compile. In my attempts with Mercurial, it works, but causes a few weird issues. Namely, it thinks someone else has checked out the files I have checked out. Here's my thoughts on how I should manage it: Disable auto-checkout. Work locally in Mercurial When I'm ready to push my changes... Clone my

Way to see all files ever checked into Visual SourceSafe by a user?

不问归期 提交于 2019-12-03 03:15:07
Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in? With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK. The command line may be faster, more efficient for this. From the command line: cd C:\Program Files\Microsoft Visual SourceSafe SET SSDIR=<path to folder containing srcsafe.ini> ss Status $/ -R -U<username> > checked-out-by-username.txt And then check the contents of checked-out-by-username.txt for your check-outs. For example: My srcsafe.ini was in C:\Program Files\Microsoft Visual SourceSafe

Source control in Visual Studio 2010?

不打扰是莪最后的温柔 提交于 2019-12-03 00:40:20
问题 After doing some search on SO, Google and MSDN forums I've become frustrated that there is so little information for what might seem like an obvious question and possibly a dumb question. I need to use source control in Visual Studio 2010 Professional. I do not have separate Team Foundation Server 2010. Some people have mentioned SourceSafe? I haven't seen any SourceSafe inside of the Visual Studio 2010 to be honest. What are some alternatives (preferably free) for source control in Visual

Export from Source Safe

余生颓废 提交于 2019-12-03 00:35:40
Is there a way to export files/folders from Source Safe? (i.e. getting rid of all .scc files, just like SVN export) Just do a regular get, then run something like ATTRIB -R *.scc /S DEL /F /S /Q *.scc The first command removes the read only flag from those files. The second deletes everything that matches *.scc along the path. 来源: https://stackoverflow.com/questions/1069133/export-from-source-safe

Create Project/solution in an existing directory?

霸气de小男生 提交于 2019-12-03 00:06:41
How can I create a New project & Solution in the same, existing , directory? No matter what I do, it keeps creating a new (sub)directory for the project and populating that directory instead of the one(s) that already exist. I have the "Create directory for Solution" checkbox cleared so that it will put the solution an dproject in the same folder and not create a solution folder, but it still keeps making the project sub-folder. How can I fix this?!? This has bugged me for a long time, but I've been able to ignore it or work-around it up until now. But now it is kicking my butt productivity

SVN? VSS? Why is one better than the other? [closed]

痴心易碎 提交于 2019-12-02 19:15:26
I tend to get the feeling that most folks here think SVN is gold-plated goodness, whereas VSS is the worst program ever devised (at least as Version Control is concerned). That said, why? I've used some CVS, and my current job uses VSS, and from a grunt on the team's perspective, I can't really tell that much difference. Most of the differences I've seen are cosmetic. Granted, I've not tried to do any branching/merging in either, but as a coder who comes in, checks out files, works on those files and checks them in at the end of the day, why would I want 1 over the other? “Visual SourceSafe?

In what ways is Mercurial better/worse than TFS? [closed]

梦想的初衷 提交于 2019-12-02 19:00:50
I've just joined a new company and at the moment we're using Microsoft SourceSafe as our repository. The settings aren't ideal and it's proving to be a big pain in the neck. I've recently used Mercurial and thought it was amazing, so I'm advocating switching to that, but it looks like the company already has a Team Foundation Server licence and wants to use that instead. Can anyone give me a list of points where one is better than the other? I've not used TFS and so I don't know what it's good/bad at. VonC You cannot directly compare TFS and a DVCS. If your company leans toward TFS, that may

Why should my team adopt source control? [closed]

本秂侑毒 提交于 2019-12-02 17:16:56
I have the opportunity to give a formal presentation to my boss about anything that benefits the company. My idea is to adopt source control in my workplace. I have been using Mercurial to manage my own project at work, but the rest of the team does not have a formal source control system in place. Unfortunately, I'm not very good at presenting ideas. So, can you guys tell me why developers MUST use source control? Additionally, why would you choose any tool except Visual SourceSafe? I don't have experience using VSS, but he is likely to ask why we wouldn't just use Microsoft's tools. I want

Source control in Visual Studio 2010?

微笑、不失礼 提交于 2019-12-02 16:04:52
After doing some search on SO, Google and MSDN forums I've become frustrated that there is so little information for what might seem like an obvious question and possibly a dumb question. I need to use source control in Visual Studio 2010 Professional. I do not have separate Team Foundation Server 2010. Some people have mentioned SourceSafe? I haven't seen any SourceSafe inside of the Visual Studio 2010 to be honest. What are some alternatives (preferably free) for source control in Visual Studio 2010? Or is it already integrated in Visual Studio 2010 that I am so blind to have missed that?

Visual Studio&Source Control: How to have shared code?

依然范特西╮ 提交于 2019-12-02 05:44:44
问题 i want to have some shared code (code library, controls, utilities, helper classes, etc) in Visual Studio. i do not mean shared assemblies, i mean shared code (i.e. i want to ship one assembly with my application, the executable assembly). The technique in other development environments way is to have the common source code in a path on my machine, and the IDE is given a list of paths to search for code files. Visual Studio does not support code search paths. The back-up hack solution is to