mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
refactor: use extended flag name
This commit is contained in:
parent
50cf7ac5bc
commit
4f8816ebf2
|
|
@ -111,7 +111,7 @@ func (self *StashCommands) SaveStagedChanges(message string) error {
|
|||
}
|
||||
|
||||
func (self *StashCommands) StashUntrackedChanges(message string) error {
|
||||
if err := self.cmd.New("git stash -u").Run(); err != nil {
|
||||
if err := self.cmd.New("git stash --include-untracked").Run(); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue