如何从 TFS 中提取整个项目
在筛选此页面时,我想我想问是否有人知道如何使用 tfs 命令行实用程序下载整个项目。看起来我不需要 get 命令...但我找不到任何看起来像我想要的东西。如果我有一个空文件夹,我想将项目映射到下载项目时 tfs 将创建的某个子文件夹。就像“git clone project-url”一样,有什么想法吗?
While sifting through this page I figured I'd ask if anyone knows how to download an entire project using the tfs command line utility. It doesn't look like I need the get command... but I can't find anything that looks like what I want. If I have an empty folder I'd like to map a project to some subfolder tfs will make when downloading the project. Like 'git clone project-url', any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命令行有点冗长。您需要创建一个工作区,映射一个工作文件夹,然后执行获取。
像这样的事情:
请注意,取消映射是存在的,因为工作区创建通常会为您创建默认映射。
进一步说明,如果您喜欢 git,您始终可以使用 git-tfs 作为 TFS 源代码控制的前端。
It's a little verbose from the command line. You need to create a workspace, map a working folder and then do a get.
Something like this:
Note that the unmap is there because the workspace creation generally creates a default mapping for you.
As a further note if you like git you can always use git-tfs as a front end for TFS source control.