What is the syntax to clone a TFS project in git-tfs when the project name has spaces? I have tried:
git-tfs.exe clone http://tfsint:8080/tfsint01/ "$/NPP UBI Dev/DEV1"
The system cannot find the file specified
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this instead:
So “git tfs” instead of “git-tfs.exe”.
The error message you’re getting is actually not referring to the project name. It seems to be caused by git-tfs not being able to locate git.exe. (It is git.cmd that is added to the path by default). More information here.