如何在父存储库的两次提交之间查看应用于子模块的提交?
How to see commits applied to a submodule between two commits of parent repository?
假设我有一个包含两个子模块的存储库:
Foo - sub1
- sub2
我希望看到某个提交应用于每个子模块的提交。是否有捷径可寻?
如果我的问题不清楚,在我的用例中,sub1 和 sub2 正在跟踪某个分支的历史记录,所以如果我要为 Foo 的 commit1 和 hte 获取 sub1 的提交哈希Foo 的 commit2 的 commit-hash,并在这些提交之间做 git 日志,我应该看到一些中间提交显示在这些提交之间应用的所有更改。我想要所有子模块的信息。
git submodule summary
命令会给你(大部分)你想要的。我将使用 ansible 存储库作为示例,因为它有几个与之关联的子模块。
提取一些更新后:
$ git pull
我可以看到我的子模块现在已经过时了:
$ git status
On branch devel
Your branch is up-to-date with 'origin/devel'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: lib/ansible/modules/core (new commits)
modified: lib/ansible/modules/extras (new commits)
我可以使用 git submodule summary
命令来获取摘要
在当前签出的子模块版本和
存储库中的版本:
$ git submodule summary lib/ansible/modules/core
* lib/ansible/modules/core 2f46c35...f15000d (46):
< fix win_user type checking
< git still needs to have abspath applied to dest
< Wrap calls to main() with if check
< handles config replace properly in eos_template
...
这显示了每个提交的第一行;如果我想要详细的
信息,我可以使用第一行显示的提交范围
输出 (2f46c35...f15000d
):
$ git submodule update
$ cd lib/ansible/modules/core
$ git log 2f46c35...f15000d
我们首先更新子模块,将它带到当前提交,
然后使用提交范围在该存储库中 运行 git log
git submodule summary
.
给了我们
假设我有一个包含两个子模块的存储库:
Foo - sub1 - sub2
我希望看到某个提交应用于每个子模块的提交。是否有捷径可寻?
如果我的问题不清楚,在我的用例中,sub1 和 sub2 正在跟踪某个分支的历史记录,所以如果我要为 Foo 的 commit1 和 hte 获取 sub1 的提交哈希Foo 的 commit2 的 commit-hash,并在这些提交之间做 git 日志,我应该看到一些中间提交显示在这些提交之间应用的所有更改。我想要所有子模块的信息。
git submodule summary
命令会给你(大部分)你想要的。我将使用 ansible 存储库作为示例,因为它有几个与之关联的子模块。
提取一些更新后:
$ git pull
我可以看到我的子模块现在已经过时了:
$ git status
On branch devel
Your branch is up-to-date with 'origin/devel'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: lib/ansible/modules/core (new commits)
modified: lib/ansible/modules/extras (new commits)
我可以使用 git submodule summary
命令来获取摘要
在当前签出的子模块版本和
存储库中的版本:
$ git submodule summary lib/ansible/modules/core
* lib/ansible/modules/core 2f46c35...f15000d (46):
< fix win_user type checking
< git still needs to have abspath applied to dest
< Wrap calls to main() with if check
< handles config replace properly in eos_template
...
这显示了每个提交的第一行;如果我想要详细的
信息,我可以使用第一行显示的提交范围
输出 (2f46c35...f15000d
):
$ git submodule update
$ cd lib/ansible/modules/core
$ git log 2f46c35...f15000d
我们首先更新子模块,将它带到当前提交,
然后使用提交范围在该存储库中 运行 git log
git submodule summary
.