如何查看用户签入 Visual SourceSafe 的所有文件?

发布于 2024-08-25 22:44:20 字数 53 浏览 6 评论 0原文

Microsoft Visual SourceSafe 中有没有办法查看我签入过的所有文件?

Is there a way in Microsoft Visual SourceSafe to see all the files I've ever checked-in?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弱骨蛰伏 2024-09-01 22:44:20

选择项目后,转到“工具”、“显示历史记录”,勾选“递归”,然后在“用户”中输入您的用户名。单击“确定”。

With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK.

驱逐舰岛风号 2024-09-01 22:44:20

命令行可能会更快、更高效。

从命令行:

  1. cd C:\Program Files\Microsoft Visual SourceSafe
  2. SET SSDIR=<包含 srcsafe.ini 的文件夹的路径>
  3. < code>ss Status $/ -R -U<用户名>; > check-out-by-username.txt

然后检查 check-out-by-username.txt 的内容以进行签出。

例如:

我的srcsafe.ini位于C:\Program Files\Microsoft Visual SourceSafe\MasterDatabase。我的用户名是 bpaetzke

因此,我的命令行如下所示:

  1. cd C:\Program Files\Microsoft Visual SourceSafe
  2. SET SSDIR=MasterDatabase
  3. ss Status $/ -R -Ubpaetzke > check-out-by-bpaetzke.txt

如果您想获取所有用户的签出情况,请删除 -U 并为输出文件指定一个通用名称。

其他命令行信息:

The command line may be faster, more efficient for this.

From the command line:

  1. cd C:\Program Files\Microsoft Visual SourceSafe
  2. SET SSDIR=<path to folder containing srcsafe.ini>
  3. 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\MasterDatabase. And my username was bpaetzke.

So, my command line looked like this:

  1. cd C:\Program Files\Microsoft Visual SourceSafe
  2. SET SSDIR=MasterDatabase
  3. 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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文