Git日志不显示子模块更改

时间:2012-02-22 17:53:30

标签: git git-submodules

我有一个提交master,hash 6877146,它更新了一个子模块。

$ git show 6877146
commit 6877146f1781bfbd4ec3ae2a27121a606f5f688e
Author: [snip]
Date:   Wed Feb 22 16:10:20 2012 +0000

    updating potatobase

diff --git a/potatobase b/potatobase
index 5877e2c..b77ba62 160000
--- a/potatobase
+++ b/potatobase
@@ -1 +1 @@
-Subproject commit 5877e2c2d82645fa44f121884291ee48cf24584d
+Subproject commit b77ba624d6a1c5e62d434ad2d06383604aeab431

此提交在主分支上,我目前已检查过:

$ git branch -a --contains 6877146
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/master
  remotes/origin/ticket-1479-refactor-blade-json-functions

但是,在子模块上执行git log并不会显示commit:

$ git log potatobase | grep 6877146
$

如果我明确地检查了这个提交,它就在日志中:

$ git checkout 6877146
$ git log potatobase | grep 6877146
commit 6877146f1781bfbd4ec3ae2a27121a606f5f688e

为什么我检查出master时这个提交没有显示在日志中?它已经合并为主人:

$ git checkout master
$ git merge 6877146
Already up-to-date.
$

1 个答案:

答案 0 :(得分:2)

更新子模块的提交只会更改修订版git将在初始化/更新子模块时检出。该提交的提交ID与子模块本身的提交ID无关。

相关问题