所以我有一个项目是一个 git repo,其中包含另一个 git 存储库。所以结构是这样的:
/gitProject
/other
/stuff
/anotherGitProject
目前,我已经将另一个 GitProject 设置为 gitProject 的子模块。我的问题是我必须将 anotherGitProject 部署到硬盘的另一部分。由于 anotherGitProject 作为附加组件,我只需将 anotherGitProject 的内容直接复制到另一个项目的目录树中:
/gitProject
/other
/stuff
/anotherGitProject
/otherProject
/(contents of anotherGitProject+otherProject)
我的问题是:如何在 gitProject 中跟踪我对 anotherGitProject 所做的更改?这看起来真的很令人费解,但我需要在 otherProject 之上对 anotherGitProject 进行更改,否则这不会成为问题。