如何查看用户签入 Visual SourceSafe 的所有文件?
Microsoft Visual SourceSafe 中有没有办法查看我签入过的所有文件?
Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
选择项目后,转到“工具”、“显示历史记录”,勾选“递归”,然后在“用户”中输入您的用户名。单击“确定”。
With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK.
命令行可能会更快、更高效。
从命令行:
cd C:\Program Files\Microsoft Visual SourceSafe
SET SSDIR=<包含 srcsafe.ini 的文件夹的路径>
然后检查 check-out-by-username.txt 的内容以进行签出。
例如:
我的
srcsafe.ini
位于C:\Program Files\Microsoft Visual SourceSafe\MasterDatabase
。我的用户名是bpaetzke
。因此,我的命令行如下所示:
cd C:\Program Files\Microsoft Visual SourceSafe
SET SSDIR=MasterDatabase
ss Status $/ -R -Ubpaetzke > check-out-by-bpaetzke.txt
如果您想获取所有用户的签出情况,请删除
-U
并为输出文件指定一个通用名称。其他命令行信息:
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: