Mercurial 工作流程(共享文件)
假设我有程序员和美工人员正在处理一个项目。艺术家有一些他们关心的文件夹:
/Doodles
/Images/Jpgs
也许程序员有一个像这样的文件夹:
/Code/View/Jpgs
Mercurial 中保持 2 个 Jpgs 文件夹同步的最佳流程是什么?我使用过 Vault,您可以在存储库中链接 2 个或更多文件/文件夹,因此更新一个文件/文件夹会更新另一个文件/文件夹。有没有办法用 Mercurial 做同样的事情?
Let's say I have programmers and artists working on a project. The artists have some folders they care about:
/Doodles
/Images/Jpgs
And maybe the programmers have a folder like this:
/Code/View/Jpgs
What is the best process in Mercurial to keep the 2 Jpgs folders synced? I have used Vault, where you can have 2 or more files/folders linked in a repository so updating one updates another. Is there a way to do the same thing with Mercurial?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以通过 JPgs 作为 Mercurial Subrepo 进行管理,即作为由程序员和艺术家在各自的主要项目中管理的嵌套存储库。
That could be managed through JPgs as a Mercurial Subrepo, that is as a nested respository managed by both programmers and artists, in their own respective main projects.