mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
Remove StashWithMessage function
It's identical to Stash(), so use that.
This commit is contained in:
@ -196,11 +196,6 @@ func (self *Shell) CreateNCommitsStartingAt(n, startIndex int) *Shell {
|
||||
return self
|
||||
}
|
||||
|
||||
func (self *Shell) StashWithMessage(message string) *Shell {
|
||||
self.RunCommand([]string{"git", "stash", "-m", message})
|
||||
return self
|
||||
}
|
||||
|
||||
func (self *Shell) SetConfig(key string, value string) *Shell {
|
||||
self.RunCommand([]string{"git", "config", "--local", key, value})
|
||||
return self
|
||||
|
Reference in New Issue
Block a user