git bisect在一个命令中

时间:2015-04-17 06:58:02

标签: git git-bisect

我认为git bisect需要输入太多。

检查我必须做的最后N次提交:

user@host> git bisect start HEAD HEAD~10
user@host> git bisect run py.test -k test_something
 ...
c8bed9b56861ea626833637e11a216555d7e7414 is the first bad commit
commit c8bed9b56861ea626833637e11a216555d7e7414
Author: ...
Date:   Thu Apr 16 16:52:41 2015 +0200

    - Commitmessage: ....

user@host> git bisect reset

在一个命令中使用它会很好

示例:

git bisect --start HEAD~10 run py.test -k test_something

使用一个命令我不是指用分号分隔的shell行: - )

1 个答案:

答案 0 :(得分:2)

查看文档是不可能的,但如果您要运行测试,也许可以找到有用的项目grosser/git-autobisect