Git Repository Branch可以作为其他Git Repository中的子文件夹吗?

时间:2013-03-14 16:40:39

标签: java spring git spring-mvc github

Git Repository Branch可以作为其他Git Repository中的子文件夹吗?

我的意思是,如果我在名为“webdesign”的git存储库中工作,并且它有一个名为“JSP”的分支,我可以以某种方式在我的“project-a”存储库中映射一个文件夹来添加分支。 / p>

我想这样做,以便我的网页设计师可以在他的Git存储库中工作,因为我正在编写我的项目使用他的JSP页面。

1 个答案:

答案 0 :(得分:4)

您想要的是git submodules - http://git-scm.com/book/en/Git-Tools-Submodules

基本上,你的设计师可以在他们自己的仓库中工作,并且将repo作为子模块(它将在你想要的子文件夹中)添加到主仓库。