SourceSafe 标签搜索
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
AJ 的想法是正确的,但您只需要使用“dir”命令而不是 get:
这将以以下格式输出该标签处版本的每个文件:
对于那些感兴趣的人,如果您想快速了解最新内容文件的版本是你可以做的:
祝你玩得开心!
AJ had the right idea, but you just need to use the "dir" command instead of get:
This will output each file with version that is at that label in the format of:
For those interested if you want to quickly tell what the latest version of a file is you can do:
Have a great time!
我不认为你可以通过标签搜索,但你可以通过标签获取。
来自 MSDN:
按标签获取版本:
I don't think you can search by label, but you can get by label.
From MSDN:
To get a version by label:
微软没有在签入/签出评论上添加简单的搜索功能,这似乎是一个失败。
我找到了这个
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.
您可以通过标签获得。
这可能与按标签搜索不同。
Sourcesafe 接受标签作为有效版本号,因此语法相同:
这将从
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:
this will get everything labelled
my label
from themyproject
project.