summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_commands/stash.go
diff options
context:
space:
mode:
authorAndrew Hynes <andrew.hynes@colabsoftware.com>2022-07-03 19:44:07 -0230
committerAndrew Hynes <andrew.hynes@colabsoftware.com>2022-09-15 21:48:49 -0230
commitc7733aa5e5249e30c9144fde4a6db61aeed0c2ec (patch)
treea55f2cf43ad0c8f0282b2073413ac71e3d714bc9 /pkg/commands/git_commands/stash.go
parenta0fd47348bd078c7b60d389eec58ce8673127bfa (diff)
refactor: rename method to `StashIncludeUntrackedChanges`
Diffstat (limited to 'pkg/commands/git_commands/stash.go')
-rw-r--r--pkg/commands/git_commands/stash.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/git_commands/stash.go b/pkg/commands/git_commands/stash.go
index 72b61b744..40e205a67 100644
--- a/pkg/commands/git_commands/stash.go
+++ b/pkg/commands/git_commands/stash.go
@@ -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()
}