如何从 TFS 中提取整个项目

发布于 2024-10-26 22:34:13 字数 255 浏览 7 评论 0原文

在筛选此页面时,我想我想问是否有人知道如何使用 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 技术交流群。

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

发布评论

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

评论(1

御弟哥哥 2024-11-02 22:34:13

命令行有点冗长。您需要创建一个工作区,映射一个工作文件夹,然后执行获取。

像这样的事情:

tf workspace /new TempWorkspace /collection:http://tfsServer:8080/tfs/defaultcollection /noprompt
tf workfold /unmap $/ /workspace:TempWorkspace
tf workfold /map "$/Project/Path/SomeFolder" localFolderName /workspace:TempWorkspace
tf get

请注意,取消映射是存在的,因为工作区创建通常会为您创建默认映射。

进一步说明,如果您喜欢 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:

tf workspace /new TempWorkspace /collection:http://tfsServer:8080/tfs/defaultcollection /noprompt
tf workfold /unmap $/ /workspace:TempWorkspace
tf workfold /map "$/Project/Path/SomeFolder" localFolderName /workspace:TempWorkspace
tf get

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.

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