两个不同的项目在一个git仓库

时间:2013-08-20 12:26:56

标签: linux git github repository

我是GIT的新手,我想知道我是否可以按照以下方式做,

我正在开发一款具有前端和后端的应用。

假设前端包含位于此路径中的10个文件。

例如:

/home/front_end/file1 , /home/front_end/file2 ...... /home/front_end/file10

虽然,后端包含位于不同路径的100个文件。

例如:

/home/app/code/file1, /home/app/code/file2 ,................./home/app/code/file99

如何创建具有两个不同位置的仓库?

1 个答案:

答案 0 :(得分:0)

你真的不能。

你能做的是:

  • 在任意位置设置回购,其中包含“front_end”和“app_code”文件夹
  • 符号链接/home/font_endyourRepo/front_end
    (如ln -s /path/to/yourRepo/font_end /home/front_end
  • 符号链接/home/app/codeyourRepo/app_code
    (如ln -s /path/to/yourRepo/app_code /home/app/code