需要同步 Mercurial 和 Team Foundation Server(TFS)
我的公司使用的是mercurial,客户使用的是TFS。我们需要一个2路同步过程? 如果 TFS 发生一些变化,这些变化应该反映在 Mercurial 中,反之亦然 需要一些解决方案 就像我做了一些批处理等 提前谢谢
my company is using mercurial and the client is using TFS. we need a 2 way sync process??
if there are some changes in TFS these should be reflected in mercurial and vice versa
need some solution
like if v made some batch process etc
thnx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有看到任何关于 hg-tfs 进程的信息,但是有一个 git (git-tfs)...有点做作,但可能会提供与 hg-git 结合使用的选项。
您仍然需要编写一些脚本等来自动实现服务器之间的通信。
或者,也许 git-tfs 项目可能是新的 hg-tfs 项目的一个很好的起点:)
I have not seen anything about an hg-tfs process, but there is one for git (git-tfs)... Kinda hokey, but may provide an option in conjunction with hg-git.
You'd still have to write up some scripts and such to automate the communication between the servers.
Alternatively, maybe the git-tfs project could be a good starting place for a new hg-tfs project :)
我们必须将 TFS 存储库一次性转换为 Mercurial,但没有找到任何好的方法。最初我们想使用
[tfs2svn]
,然后hg Convert
SVN 存储库。唉,
tfs2svn
在复杂的重命名和分支方面并不稳定。我设法以这种方式转换一个小型存储库,但必须编写一个自定义tfs2hg
实用程序来转换另一个具有 2 年历史的存储库。如果您找到解决方案,请发布答案。
We had to do a one-time conversion of a TFS repo into Mercurial, and didn't find any good way to do it. Initially we wanted to use
[tfs2svn]
, and thenhg convert
the SVN repo.Alas,
tfs2svn
isn't stable when it comes to complex renames and branching. I managed to convert a small repo that way, but had to write a customtfs2hg
utility to convert another repo, with 2 years worth of history.If you find a solution, please post an answer.