visual-sourcesafe-2005

How to change the Tagger name and email of a Git Tag

情到浓时终转凉″ 提交于 2020-01-06 06:31:22
问题 Long story short I'm writing a script to migrate a very large project from (gasp) Microsoft SourceSafe to Git and I'm trying to retain the authors of the SourceSafe project's labels(which are essentially tags in Git). I know you can modify the author and committer name/date of a Git Commit but can you do the same to a Git Tag? 回答1: TL;DR Re-create the tags with the new desired data. But if anyone else had them before, they may not accept your new ones. Or they may! It's up to them , though.

Get all files checked out by a user using the Visual Source Safe command line application SS.exe

若如初见. 提交于 2020-01-01 09:14:22
问题 We currently use VSS 6, this is not going to change I am afraid. I am attempting to write a script that will allow a user to quickly copy all files that they have checked out to another directory tree. In order to do this I need to get a list of all the files that the user has checked out, and the directory that the file is checked out to. This is easy enough to do using status search in the GUI. But I need a way of doing it from the command line utility ss.exe. 回答1: Two links that may be of

In Visual Source Safe is there a limit to how many labels you can apply?

此生再无相见时 提交于 2019-12-24 11:13:34
问题 We have a collection of 25 or so projects in a source safe database and we want to apply daily labels to each of them. Is there a limit to the number of labels that can be applied? 回答1: We've been using one repository for 5 years so far. It stores numerous projects and something like ten daily builds run every day on that repository. Every daily build creates a new label on some project every time it runs. So far we haven't seen any problems with possible labels exhaustion. 回答2: No, there is

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

耗尽温柔 提交于 2019-12-20 14:49:53
问题 Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in? 回答1: With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK. 回答2: 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

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

有些话、适合烂在心里 提交于 2019-12-20 14:48:40
问题 Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in? 回答1: With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK. 回答2: 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

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

為{幸葍}努か 提交于 2019-12-20 14:48:32
问题 Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in? 回答1: With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK. 回答2: 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

Problems using powershell to perform a source safe get by label

為{幸葍}努か 提交于 2019-12-11 06:25:35
问题 I'm trying to use powershell to do a "get" from srcSafe using a label that contains spaces. I've read what seems like numerous posts about how to pass params w/spaces to exe's but nothing I've tried works. My problem appears to be supplying the label correctly. Following is the cmd line version ( which works ). ss get $/sandbox/TestSSCmdLine/* -R -I-N -VL"label space" My simplest powershell version is: ss get '$/sandbox/TestSSCmdLine/*' -R -I-N '-VL\"label space\"' When I run the powershell

VS2005 and VSS. Should .exes, .dlls, pdbs, .resource and generated .xml files go in VSS?

左心房为你撑大大i 提交于 2019-12-11 03:56:14
问题 It seems like the following type of files need to be writable to be able to compile a solution. .exe .dll .pdb (if debugging) .resource (?) .xml (at least the system generated ones. I'm not sure if they are just all XML documentationf iles) If they were checked in and could only be overwritten by the compiler by the person who had them checked out, then checking them into sourcesafe and requiring a checkout to modify them, which is attemtped by the compiler each time you run, would interfer

Restoring old version to current writable in Visual SourceSafe

依然范特西╮ 提交于 2019-12-08 12:44:06
问题 I am working on an ASP.NET application in VS2010; the repository is still VSS-2005. I am going to abandon the changes made to one of the pages and revert back to the version that existed two checkins ago (which is the current production code). My problem is that I haven't worked with VSS much and I've never done this particular thing before. I can't find any "How to" literature on VSS that tells how to do it, and when I try to do it using the intuitive thing (do a "Get" on the version I want

Get all files checked out by a user using the Visual Source Safe command line application SS.exe

断了今生、忘了曾经 提交于 2019-12-04 03:32:31
We currently use VSS 6, this is not going to change I am afraid. I am attempting to write a script that will allow a user to quickly copy all files that they have checked out to another directory tree. In order to do this I need to get a list of all the files that the user has checked out, and the directory that the file is checked out to. This is easy enough to do using status search in the GUI. But I need a way of doing it from the command line utility ss.exe. Two links that may be of use: VSS CommandLine Commands VSS CommandLine Options To expand on Panos reply ss.exe Status $/ -R -U