当项目名称包含空格时,在git-tfs中克隆TFS项目的语法是什么?我试过了:
git-tfs.exe clone http://tfsint:8080/tfsint01/ "$/NPP UBI Dev/DEV1"
系统找不到指定的文件
答案 0 :(得分:2)
请改为尝试:
git tfs clone http://tfsint:8080/tfsint01/ "$/NPP UBI Dev/DEV1"
所以“git tfs”而不是“git-tfs.exe”。
您获得的错误消息实际上并不是指项目名称。它似乎是由git-tfs无法找到git.exe引起的。 (默认情况下,git.cmd添加到路径中)。 More information here