migrate stash tests

This commit is contained in:
Jesse Duffield 2023-02-20 21:52:27 +11:00
parent e1c376ef54
commit 2b6a109e38
290 changed files with 452 additions and 582 deletions

View file

@ -207,3 +207,9 @@ func (self *Shell) HardReset(ref string) *Shell {
return self
}
func (self *Shell) Stash(message string) *Shell {
self.RunCommand(fmt.Sprintf("git stash -m \"%s\"", message))
return self
}