refactor: rename method to StashIncludeUntrackedChanges

This commit is contained in:
Andrew Hynes 2022-07-03 19:44:07 -02:30
parent a0fd47348b
commit c7733aa5e5
2 changed files with 2 additions and 2 deletions

View file

@ -110,7 +110,7 @@ func (self *StashCommands) SaveStagedChanges(message string) error {
return nil
}
func (self *StashCommands) StashUntrackedChanges(message string) error {
func (self *StashCommands) StashIncludeUntrackedChanges(message string) error {
return self.cmd.New(fmt.Sprintf("git stash save %s --include-untracked", self.cmd.Quote(message))).Run()
}