Cloning tfs repository with git-tf gives a "a server path must be absolute"
I am currently involved in moving some TFS TFVC hosted source to a TFS Git repository. The first step was to clone the source for a team project from TFS using the command git tf clone --deep [http://tfsserver01:8080/tfs/defaultcollection](http://tfsserver01:8080/tfs/defaultcollection) ‘$My Project’ localrepo1 and it worked fine. However the next project I tried to move had no space in the source path git tf clone --deep [http://tfsserver01:8080/tfs/defaultcollection](http://tfsserver01:8080/tfs/defaultcollection) ‘$MyProject’ localrepo2 This gave the error git-tf: A server path must be absolute. Turns out if the problem was the single quotes. Remove these and the command worked as expected ...