TFS 与 git 的桥接项目:git-tfs
jopen
11年前
git-tfs 是一个 Git 和 TFS (Team Foundation Server) 的桥。
可以实现获取 TFS 提交到 Git 资料库,或者将 Git 的信息推到 TFS 上。
示例用法:
# [optional] find a tfs repository path to clone : git tfs list-remote-branches http://tfs:8080/tfs/DefaultCollection # clone the whole repository (wait for a while...) : git tfs clone http://tfs:8080/tfs/DefaultCollection $/some_project # or, if you're impatient (and want to work from the last changeset) : git tfs quick-clone http://tfs:8080/tfs/DefaultCollection $/some_project # or, if you're impatient (and want a specific changeset) : git tfs quick-clone http://tfs:8080/tfs/DefaultCollection $/some_project -c=145