我们最近在使用 Git 存储库时遇到了很多问题。我们是 git 子模块的用户,我们的应用程序之间共有 4 个共享存储库。
例如,存储库“网站”共有 3 个子模块。
[submodule "vendor/api"]
path = vendor/api
url = git@your.cool.domain.com:api
[submodule "vendor/auth"]
path = vendor/auth
url = git@your.cool.domain.com:auth
[submodule "vendor/tools"]
path = vendor/tools
url = git@your.cool.domain.com:tools
我们已经正确签出了我们的主存储库“网站”。现在我的一位同事做了一个推,然后我git pull; git status
:
# On branch master
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: vendor/api (new commits)
# modified: vendor/auth (new commits)
# modified: vendor/tools (new commits)
#
no changes added to commit (use "git add" and/or "git commit -a")
mcfly@future:~/projects/website$ git diff
diff --git a/vendor/api b/vendor/api
index 41795fc..b582d80 160000
--- a/vendor/api
+++ b/vendor/api
@@ -1 +1 @@
-Subproject commit 41795fc4dde464d633f4c0f01eebb6ab1ad55582
+Subproject commit b582d802419b0ee7bc3959e7623fec0b94680269
diff --git a/vendor/auth b/vendor/auth
index a00369b..4599a71 160000
--- a/vendor/auth
+++ b/vendor/auth
@@ -1 +1 @@
-Subproject commit a00369bf29f14c761ce71f7b95aa1e9c107fb2ed
+Subproject commit 4599a7179c9b7ca4afa610a15ffa4a8fc6ebf911
diff --git a/vendor/tools b/vendor/tools
index f966744..c678cf6 160000
--- a/vendor/tools
+++ b/vendor/tools
@@ -1 +1 @@
-Subproject commit f966744359510656b492ae3091288664cdb1410b
+Subproject commit c678cf6f599fc450e312f0459ffe74e593f5890f
那有什么问题git diff
?问题是每个子模块的新提交都比将被覆盖的提交旧。这不是我们想要的,因为在存储库上正确指向41795fc4dde464d633f4c0f01eebb6ab1ad55582
,a00369bf29f14c761ce71f7b95aa1e9c107fb2ed
并且f966744359510656b492ae3091288664cdb1410b
如果我们将此修改添加到我们的下一次提交中,我们可能会阻止这些事情。我不知道为什么它得到了最旧的版本而不是最新的版本。
我试图自己解决这个问题,但没有成功:
mcfly@future:~/projects/website$ git pull; git submodule foreach git pull
执行最后一个命令是不正确的,因为我们可能会将“网站”的指针更新为每个子模块的最新版本,而我们不希望这样。我们希望保留它在存储库中的正确修订。
我要解释的一件事是我们通常在这个子模块中工作,例如:
mcfly@future:~/projects/website$ cd vendor/api
mcfly@future:~/projects/website/vendor/api$ git checkout master
mcfly@future:~/projects/website/vendor/api$ echo "lorem ipsum" >> example.file
mcfly@future:~/projects/website/vendor/api$ git add example.file; git push
当我们做一个git submodule update
'master'分支时,每个子模块都会丢失。
最后,什么是正确的方法push
,pull
并且使用子模块并且没有所有这些问题?
先感谢您