我可以让git bisect显示缩短提交SHA吗?

时间:2012-09-06 18:00:29

标签: git git-bisect

在每次二分之后运行git bisect会生成如下输出:

Bisecting: 22 revisions left to test after this (roughly 5 steps)
[123fedacc728b985d4f8d010e2a69dcbdcbf3e8e] use binascii module for hex/binary conversions

我可以使用部分提交名称前缀,类似于git log --abbrev-commit中使用的那些吗?像这样:

Bisecting: 22 revisions left to test after this (roughly 5 steps)
[123feda] use binascii module for hex/binary conversions

1 个答案:

答案 0 :(得分:1)

没有。 git bisect {{1}}为完整哈希和终结符分配内存。然而,在旗帜中修补可能很容易。如果您认为它是git的一个有价值的补充,您可以尝试将其中一个发送到git列表。

相关问题