如果您使用gitk --all
,您可以从所有分支查看您的 repo 的所有提交。我想要类似的东西,除了给定提交的后代。
4 回答
我认为这可能会做你想要的。以 A 为祖先的所有分支中的所有提交:
gitk --all --ancestry-path A..
简而言之:
git log --all BRANCH~1..
详细地说,带有示例:这是我刚刚创建的存储库的完整树:
$ git log --graph --oneline --decorate --all
* e3972be (HEAD, a) a-6
* 2707d79 a-5
* cdea9a7 a-4
| * 65b716e (c) c-5
| * ebe2a0e c-4
|/
| * 2ed9abe (b) b-4
|/
* ace558e (master) 3
* 20db61f 2
* 3923af1 1
除了--all
,还有一点很明显:master
-> HEAD
:
$ git log --graph --oneline --decorate master..
* e3972be (HEAD, a) a-6
* 2707d79 a-5
* cdea9a7 a-4
所以我尝试将它们结合起来,它几乎得到了我们想要的东西:
$ git log --graph --oneline --decorate --all master..
* e3972be (HEAD, a) a-6
* 2707d79 a-5
* cdea9a7 a-4
* 65b716e (c) c-5
* ebe2a0e c-4
* 2ed9abe (b) b-4
但不幸的是,这并没有显示分支之间的关系,因为我们所询问的分支被省略了。所以我们必须使用来自父级的日志,master
如下所示:
$ git log --graph --oneline --decorate --all master~1..
* e3972be (HEAD, a) a-6
* 2707d79 a-5
* cdea9a7 a-4
| * 65b716e (c) c-5
| * ebe2a0e c-4
|/
| * 2ed9abe (b) b-4
|/
* ace558e (master) 3
达达!(我不知道这在过去是否根本不起作用,但以防万一:我使用的是 git 版本 1.7.1)
编辑 2017-11-17 - 感谢 STW 实际展示了这个问题:独立树会搞砸。完全独立的提交master
将包含在此输出中。从上述 repo 的副本开始,这是我最后一个命令将输出的内容:
$ git checkout --orphan z
Switched to a new branch 'z'
$ git commit --allow-empty -m'z-1'
[z (root-commit) bc0c0bb] z-1
$ git commit --allow-empty -m'z-2'
[z 1183713] z-2
$ git log --graph --oneline --decorate --all master~1..
* 1183713 (HEAD -> z) z-2
* bc0c0bb z-1
* 6069f73 (a) a-6
* 654d106 a-5
* a218c59 a-4
| * 338432a (c) c-5
| * 2115318 c-4
|/
| * 43a34dc (b) b-4
|/
* ce05471 (master) 3
该z
分支是作为孤儿创建的,与 没有共同的历史,master
因此应该被排除但没有。这就是为什么,我现在明白了。包括它将排除分支:z-1
z-2
--ancestry-path
z
$ git log --graph --oneline --decorate --all --ancestry-path master~1..
* 6069f73 (a) a-6
* 654d106 a-5
* a218c59 a-4
| * 338432a (c) c-5
| * 2115318 c-4
|/
| * 43a34dc (b) b-4
|/
* ce05471 (master) 3
为了完整起见,即使已经有了--ancestry-path
,当前的最佳答案也没有正确显示分支关系,因为它排除了master
自身的提交:
$ git log --graph --oneline --decorate --all --ancestry-path master..
* 6069f73 (a) a-6
* 654d106 a-5
* a218c59 a-4
* 338432a (c) c-5
* 2115318 c-4
* 43a34dc (b) b-4
提交只知道它的父级(因此一直向上),但不知道它的子级/后代。您必须使用 A..B 之类的符号才能找到它。
例如,如果您想在当前分支中查找自给定提交 A 以来的提交,您可以执行以下操作:
git rev-list A..
我能够使用 bash/git 为所有分支执行此操作。
这列出了后代提交(和给定的根):
git_list_all_descendant_hashes() {
COMMIT=$1
if [[ ${#COMMIT} -lt 40 ]]; then # short commit hash, need full hash
COMMIT=`git rev-parse ${COMMIT}`
fi
declare -A ALL_HASHES
while IFS= read -r string; do
IFS=' ' read -r -a array <<< $string
key=${array[0]}
value=${array[@]:1}
ALL_HASHES[${key}]=$value
done <<< $(git rev-list --children --all)
declare -A HASHES # subset of ALL_HASHES that are descendants
HASHES[${COMMIT}]=1
added_hashes=1
while [[ ${added_hashes} -gt 0 ]]; do
added_hashes=0
# this loop is inefficient, as it will iterate over all collected hashes each time a hash is found to have new children
for hash in ${!HASHES[@]}; do
for child_hash in ${ALL_HASHES[${hash}]}; do
if [[ ! -v HASHES[$child_hash] ]]; then
added_hashes=1
HASHES[${child_hash}]=1
fi
done
done
done
for hash in ${!HASHES[@]}; do
echo ${hash}
done
}
您可以通过以下方式调用它:
git_descendants() {
# the --short flag is a hack that'll return an error code if no argument is given, but git_list_all_descendant_hashes actually needs to turn it into a full hash
COMMIT=`git rev-parse --short $1 2>/dev/null || git rev-parse HEAD`
git log --graph --oneline --decorate ^${COMMIT}^@ $(git_list_all_descendant_hashes ${COMMIT})
}
如果后代有多个父母(即来自合并提交),它也会显示其非根祖先。这是我很高兴的事情,所以我没有费心去弄清楚如何摆脱它。