标签: git bisect
我基本上想做git bisect run 'bundle && bundle exec cucumber'。
git bisect run 'bundle && bundle exec cucumber'
我想在命令行上执行此操作 - 我不想编写shell脚本。
答案 0 :(得分:44)
git bisect run sh -c 'bundle && bundle exec cucumber'