add another bisect integration test

This commit is contained in:
Jesse Duffield 2022-08-22 19:52:05 +10:00
parent 010f430d1f
commit 8cdfc6758f
134 changed files with 119 additions and 127 deletions

View file

@ -44,6 +44,10 @@ func (s *Shell) NewBranch(name string) *Shell {
return s.RunCommand("git checkout -b " + name)
}
func (s *Shell) Checkout(name string) *Shell {
return s.RunCommand("git checkout " + name)
}
func (s *Shell) GitAdd(path string) *Shell {
return s.RunCommand(fmt.Sprintf("git add \"%s\"", path))
}