github 中的私有文件夹
/source/application/controller ( visible )
/source/application/models ( visible )
/source/application/views ( visible )
/source/framework ( not visible )
我们可以在 github 或任何 git 站点上这样做吗? SVN?或者也许是其他单片机?
/source/application/controller ( visible )
/source/application/models ( visible )
/source/application/views ( visible )
/source/framework ( not visible )
can we somehow do like this at github or in any git sites ? svn ? or maybe other SCM ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用 子模块 支持来使用 Git 来执行此操作。您可以为“应用程序”创建一个存储库,并将其公开。然后创建一个包含该内容的存储库,并将“应用程序”设置为子模块。如果您不公开外部存储库,那么它实际上是私有的。
You could do this using Git by using the submodule support. You could create a repository for "application", and make that public. Then create a repository containing that, and set up "application" as a submodule. If you don't make the outer repository public, then it's effectively private.