问题描述
有没有办法在一次操作中从 TFS 的各个文件夹中检出多个文件.
Is there a way to check-out multiple files from various folders in TFS in a single operation.
我修改了多个目录下的多个文件,但我希望它们可以通过单击签出并在单击中签入.
i have modified multiple files under muliple direcotries but i want them to check-out in a single click and check-in also in single click.
谢谢.
推荐答案
是的,使用 TFS 命令行客户端 (tf.exe).
Yes, using the TFS command line client (tf.exe).
如果您有可用的 tf.exe,则可以使用 checkout 命令执行此操作.(如果你没有,看看这个问题:如何获取tf.exe(TFS命令行客户端)?)
If you have tf.exe available, you could do this using the checkout command. (If you don't, take a look at this question: How to get tf.exe (TFS command line client)?)
Visual Studio 2013-2015 的结帐命令:https://www.visualstudio.com/en-us/docs/tfvc/checkout-or-edit-command
旧版本:https://msdn.microsoft.com/en-us/library/1yft8zkw(v=vs.80).aspx
示例:用空格分隔多个文件
tf checkout file2.cs file2.cs
示例:使用通配符进行搜索
tf checkout *.csproj /recursive
这篇关于有没有办法在一次操作中从 TFS 的各个文件夹中检出多个文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!