最佳答案
Git 初学者问题:
我有一个小的私人网络项目,是版本与 msysgit 本地。没有外部存储库,因为它只适合我,所以我基本上可以做任何我想要的。
我已经在项目目录中设置了这个选项(在“ webroot”中)。
现在必须创建第二个目录,它与 webroot 并行。
现在的结构如下:
\ project directory
----\webroot
----\assets
I'd love to include this new directory in the git repository, so that I'd also version changes to files stored there, but of course I can't use "git add ../assets". Neither am I inclined to create a new git project in project_directory, as this would loose all my previous commits.
那么,如何将存储库从“ webroot”移动到“ project _ directory”,同时保持提交,然后能够包含“ asset”呢?