使用命令行 TFS 客户端
我正在尝试使用 TFS 命令行客户端 (tf.exe)。当我运行“tf get someProject”时,它会挂起,然后显示“所有文件都是最新的”。没有下载任何内容。如何使用命令行客户端从 TFS 获取文件?谢谢,
213897
I'm trying to use the TFS command line client (tf.exe). When I run 'tf get someProject' it hangs, and then says 'All files are up to date'. Nothing is downloaded. How can I get files from TFS using the command line client? Thanks,
213897
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用
/recursive
开关告诉 TFS 获取团队项目中的所有内容?如果是,那么听起来 TFS 认为您的本地工作区中已经拥有最新版本。如果你知道这是不正确的,你可以使用/force
开关,它告诉 TFS 忽略它认为在工作区中的内容并获取所有内容(如果你有一个很大的代码库和/或很多代码库,这将需要一段时间)的分支机构)Are you using the
/recursive
switch to tell TFS to get everything in the Team Project? If you are then it sounds like TFS thinks that you already have the latest version in your local workspace. If you know this is incorrect you can use/force
switch which tells TFS to ignore what it thinks is in the workspace and get everything (this will take a while if you have a large codebase and / or lots of branches)