我是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
如何创建具有两个不同位置的仓库?
答案 0 :(得分:0)
你真的不能。
你能做的是:
front_end
”和“app_code
”文件夹/home/font_end
至yourRepo/front_end
ln -s /path/to/yourRepo/font_end /home/front_end
)/home/app/code
至yourRepo/app_code
ln -s /path/to/yourRepo/app_code /home/app/code
)