用于 Web 部署的 Mercurial HG Archive 子目录
我有一个 Mercurial 存储库,其中包含设计文件的子目录和代码文件的子目录。
在我的服务器上部署代码子目录、保持其安全而不部署设计文件的最佳方法是什么?
I've got a Mercurial repository that contains a subdirectory for design files and a sub directory for code files.
What's the best way for me to deploy the code subdirectories on my server, keeping it secure, without deploying the design files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
理想情况下,您应该将它们放在单独的存储库中,正如凯尔指出的那样,可以选择使用子存储库。
但是,根据您的设置,您可能需要这样的东西:
或者如果您需要先传输它:
Ideally you should have these in separate repos as Kyle pointed out, optionally, using sub repositories.
However, with your setup as is something like this might be all you need:
or if you need to transfer it first:
您可以尝试对这两个子目录使用 子存储库。
You might try using subrepositories for the two subdirectories.