SourceSafe 标签搜索

发布于 2024-07-07 15:52:34 字数 62 浏览 7 评论 0原文

有没有办法在 Microsoft Visual SourceSafe 6.0d 中搜索带有特定标签的所有文件?

Is there a way to search Microsoft Visual SourceSafe 6.0d for all files tagged with a specific label?

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

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

发布评论

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

评论(4

一紙繁鸢 2024-07-14 15:52:34

AJ 的想法是正确的,但您只需要使用“dir”命令而不是 get:

ss dir -v"LABEL" $\PROJECT -R

这将以以下格式输出该标签处版本的每个文件:

someFile.c;23
someOtherFile.h;3
<filename>;<version>

对于那些感兴趣的人,如果您想快速了解最新内容文件的版本是你可以做的:

ss dir -v. $\PROJECT -R

祝你玩得开心!

AJ had the right idea, but you just need to use the "dir" command instead of get:

ss dir -v"LABEL" $\PROJECT -R

This will output each file with version that is at that label in the format of:

someFile.c;23
someOtherFile.h;3
<filename>;<version>

For those interested if you want to quickly tell what the latest version of a file is you can do:

ss dir -v. $\PROJECT -R

Have a great time!

嘴硬脾气大 2024-07-14 15:52:34

我不认为你可以通过标签搜索,但你可以通过标签获取。

来自 MSDN:

按标签获取版本:

  1. 确保您已在 Visual SourceSafe Explorer 中设置工作文件夹。 请参阅如何:设置工作文件夹。
  2. 确保您已设置历史记录选项。 请参阅如何:查看历史记录。
  3. 选择包含要检索的文件的项目。
  4. 在“工具”菜单上,单击“显示历史记录”。
  5. 在“历史记录选项”对话框中,选择要检索的文件版本,然后单击“确定”。
  6. 在“历史记录”对话框中,单击“获取”以检索您选择的文件的版本。
  7. 在“获取”对话框中,输入所需的任何其他条目,然后单击“确定”以检索文件。

I don't think you can search by label, but you can get by label.

From MSDN:

To get a version by label:

  1. Make sure that you have set a working folder in Visual SourceSafe Explorer. See How to: Set the Working Folder.
  2. Ensure that you have set the history options. See How to: View History.
  3. Select the project that contains the file to retrieve.
  4. On the Tools menu, click Show History.
  5. In the History Options dialog box, select the version of the file to retrieve and click OK.
  6. In the History of dialog box, click Get to retrieve the version of the file that you have chosen.
  7. In the Get dialog box, make any additional entries needed and click OK to retrieve the file.
失去的东西太少 2024-07-14 15:52:34

微软没有在签入/签出评论上添加简单的搜索功能,这似乎是一个失败。

我找到了这个
http://www.codeproject.com/KB/cpp/Schiott_SourceReport.aspx

它将您想要的所有评论提取到文本文件中。

It does seem to be a failure on Microsofts part not to put in a simple search feature on the comments of checkins/checkouts.

I have found this
http://www.codeproject.com/KB/cpp/Schiott_SourceReport.aspx

It extracts all the comments you want to a text file.

南风起 2024-07-14 15:52:34

您可以通过标签获得。
这可能与按标签搜索不同。

Sourcesafe 接受标签作为有效版本号,因此语法相同:

ss get -V"my label" $\myproject -R 

这将从 myproject 项目中获取标记为 my label 的所有内容。

You can get by label.
This may not be the same as searching by label.

Sourcesafe accepts a label as a valid version number, so it's the same syntax:

ss get -V"my label" $\myproject -R 

this will get everything labelled my label from the myproject project.

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