Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 xcode 4.6 将源代码提交到 TFS 时遇到问题,我正在使用git-tf 但我无法将源代码提交到服务器。我已从服务器克隆文件夹。请帮我。
将 TFS 上的代码克隆到本地 git 存储库后,您就可以进行更改了。一旦你做他们使用:
git commit -a -m "commnent"
现在您可以在 TFS 中检查它们:
git tf checkin
所有提交都将作为 TFS 上的一个单一变更集进行检查。