我尝试使用TFS 2013使用git-tfs在TFS中克隆GIT存储库
update myTable
set data=data+convert(varchar(50),id)
给我:
git tfs clone http://servername:8080/tfs/DCM "$/Python"
" DCM"是集合的名称和" Python"是项目的名称:
我尝试列出分支:
error: the path $/Python you want to clone doesn't exist!
产生:
git tfs list-remote-branches http://servername:8080/tfs/DCM
我的直觉是这是一个语法错误,但不确定我做错了什么。
答案 0 :(得分:4)
作为“git-tfs”的主要开发者,我很高兴你绝对想要使用它!但这里没有必要; - )
您要克隆的存储库已经是一个git存储库。
git-tfs是一个能够在git存储库中导入TFVC历史记录的桥接工具。
所以,你只需要做一个纯粹的git克隆,应该是这样的:
git clone http://servername:8080/tfs/DCM/Python.git
网址由网页门户提供,位于您右上角的确切页面。你应该有一个'克隆'按钮......