Mercurial 中的两个关闭存储库
我目前正在开发一个项目,我正在考虑将其开源,但我绝对想暂时将其保持闭源。在这个项目中,我有一个想要公开的子项目,这样任何人都可以访问/分叉它。
所以这就是我想要的:
一个 Mercurial SCC,其中包含:
Repo 1
:来自/dir/project/
的所有文件 - 私有存储库,需要用户名/密码才能拉/推/分叉/browse 等。Repo 2
:来自/dir/project/stuff
的一些文件 - 公共存储库,但需要用户名/密码才能修改。
我该怎么做?我有更好的方法可以做到这一点吗?我正在使用共享托管 Linux 环境来执行此操作,那么符号链接是一个更好的主意吗?
我愿意接受所有建议,谢谢,我还是个 HG 新手。
I have a project I'm currently working on, which I am contemplating making open source, but I definitely want to keep it closed-source for the time being. Inside this project, I have a sort of subproject that I want to make public, so anyone can access/fork it.
So here's what I want:
A mercurial SCC with:
Repo 1
: All files from/dir/project/
- Private repo, requires username/password to pull/push/fork/browse etc.Repo 2
: Some files from/dir/project/stuff
- Public repo, but requires username/password to modify.
How can I do this? Is there a better way I can do this? I'm using my shared hosting Linux environment to do this, so is symbolic linking a better idea?
I'm open to all suggestions thanks, still a bit of a HG newbie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用“子存储库 ” 定义项目的两个部分:
(此处不需要符号链接)
另请参阅同类问题中的SO问题“Mercurial Subrepos - 如何创建它们以及它们如何工作?”。
You should use "subrepository" to define the two parts of your project:
(No symlink necessary here)
See also in the same kind of problem the SO question "Mercurial Subrepos - How do you create them and how do they work?".