在 Windows 上,我们可以将不同的文件夹放在 1 个 Git 或 Mercurial (hg) 存储库中吗?
在 Windows 上,我们可以将不同的文件夹放在 1 个 Git 或 Mercurial (hg) 存储库中吗?
例如将
c:\ror
c:\software projects\ruby
c:\js test
d:\peter_website
所有内容放入 1 个名为 code
的 Git 或 Mercurial 存储库中?
On Windows, can we put different folders in 1 Git or Mercurial (hg) repository?
Such as putting
c:\ror
c:\software projects\ruby
c:\js test
d:\peter_website
all in 1 Git or Mercurial repository called code
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这不可能直接实现。您可以做的是为每个目录创建单独的存储库,然后将它们组合为另一个存储库中的子模块。
我建议只保留一个关于一个项目的存储库。如果这三个目录用于同一个项目,您可能会考虑为它们使用更好的目录结构。
No, this is not directly possible. What you could do is making seperate repositories for each dir and then combine them as submodules in another repository.
I would advise to keep a repository about one project only. If these three dirs are for the same project, you might considering using a better directory structure for them.