mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-28 16:02:01 +03:00
fix: use message in git stash command
This commit is contained in:
@ -111,6 +111,6 @@ func (self *StashCommands) SaveStagedChanges(message string) error {
|
||||
}
|
||||
|
||||
func (self *StashCommands) StashUntrackedChanges(message string) error {
|
||||
return self.cmd.New("git stash --include-untracked").Run();
|
||||
return self.cmd.New(fmt.Sprintf("git stash save %s --include-untracked", self.cmd.Quote(message))).Run()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user