Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in?
相关问题
- Using Subversion and SourceSafe at the same time?
- Using Subversion and Visual SourceSafe in parallel
- Restoring old version to current writable in Visua
- How to migrate VSS 2005 to TFS 2015?
- SVN Delete with wildcard?
相关文章
- Sourcesafe command line options
- Way to see all files ever checked into Visual Sour
- Can Perforce and SourceSafe co-exist in Visual Stu
- Performance in Subversion vs. SourceSafe
- Migrate a Source Safe database to SubVersion with
- Visual Source Safe --> TFS Migration
- Branching and Merging Strategies
- Setting up a large software system in Delphi
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 inC:\Program Files\Microsoft Visual SourceSafe\MasterDatabase
. And my username wasbpaetzke
.So, my command line looked like this:
cd C:\Program Files\Microsoft Visual SourceSafe
SET SSDIR=MasterDatabase
ss Status $/ -R -Ubpaetzke > checked-out-by-bpaetzke.txt
If you want to get all users' check-outs, remove the
-U<username>
and give the output file a generic name.Other command line info:
With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK.