mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 12:25:47 +02:00
add another bisect integration test
This commit is contained in:
parent
010f430d1f
commit
8cdfc6758f
134 changed files with 119 additions and 127 deletions
|
@ -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))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue