git-tfs:如何克隆包含空格的 tfs 项目

发布于 2025-01-03 13:26:30 字数 445 浏览 3 评论 0原文

我正在尝试使用 git-tfs 克隆 TFS 存储库。

它非常适合名称中没有空格的 TFS 项目,例如:

git tfs clone http://tfs:8080/ $/TeamProject/folder

但我也有一些项目/文件夹中同时包含空格和瑞典字符:

git tfs clone http://tfs:8080/ $/TeamProject/my swedish åäö folder1/folder2

当我运行命令时,我得到:

The item $/TeamProject/my swedish åäö folder1/folder2 does not exist at the spcified version.

任何建议如何解决这个问题吗?

I am trying to clone a TFS repository using git-tfs.

It works great with TFS projects that don´t have a space in the name, such as:

git tfs clone http://tfs:8080/ $/TeamProject/folder

But I also have some projects/folders that has both spaces and swedish characters in it:

git tfs clone http://tfs:8080/ $/TeamProject/my swedish åäö folder1/folder2

When I run the command I get:

The item $/TeamProject/my swedish åäö folder1/folder2 does not exist at the spcified version.

Any suggestion how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

堇色安年 2025-01-10 13:26:30

以下是使用 git tfs 克隆 TFS (TFVC) 存储库的工作示例,其中 TFS (TFVC) 存储库包含空格:

git tfs clone http://tfs:8080/ $/"Team项目/文件夹名称”

使其工作的关键“技巧”是将双引号放在团队项目/文件夹名称周围(但不要将它们放在 $/ 部分)。

$/"团队项目/文件夹名称"

Here's a working example of cloning a TFS (TFVC) repository using git tfs where the TFS (TFVC) repository contains spaces:

git tfs clone http://tfs:8080/ $/"Team Project/Folder Name"

The key "trick" to making it work is to put the double quotes around the team project / folder name (but don't put them around the $/ part).

i.e. $/"Team Project/Folder Name"

孤独岁月 2025-01-10 13:26:30

我通过重命名 TFS 中的项目并删除瑞典字符解决了该问题。

正如 Polynomial 所说,如果用双引号将路径括起来,则可能会有包含空格的文件夹/项目。

I solved the problem by renaming the projects in TFS, and removed the swedish characters.

As Polynomial said, it is possible to have folders/projects that contains space if you enclose the path with double quotes.

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