summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_commands/stash.go
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2022-10-16 09:11:54 +0900
committerRyooooooga <eial5q265e5@gmail.com>2022-10-16 09:30:04 +0900
commit3103398e317d77f7fef4e9b66d87e118cb7b9e52 (patch)
tree25ee1648c89f90079e7ad7b1d5093550d7b3b877 /pkg/commands/git_commands/stash.go
parente78e829e3a8940f5b7b8f0bfc77b3316d19e1e8b (diff)
chore: refactor rename stash
Diffstat (limited to 'pkg/commands/git_commands/stash.go')
-rw-r--r--pkg/commands/git_commands/stash.go25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkg/commands/git_commands/stash.go b/pkg/commands/git_commands/stash.go
index 176a67e52..9c7321b50 100644
--- a/pkg/commands/git_commands/stash.go
+++ b/pkg/commands/git_commands/stash.go
@@ -1,9 +1,7 @@
package git_commands
import (
- "errors"
"fmt"
- "regexp"
"strings"
"github.com/jesseduffield/lazygit/pkg/commands/loaders"
@@ -32,9 +30,8 @@ func (self *StashCommands) DropNewest() error {
return self.cmd.New("git stash drop").Run()
}
-func (self *StashCommands) Drop(index int) (string, error) {
- output, _, err := self.cmd.New(fmt.Sprintf("git stash drop stash@{%d}", index)).RunWithOutputs()
- return output, err
+func (self *StashCommands) Drop(index int) error {
+ return self.cmd.New(fmt.Sprintf("git stash drop stash@{%d}", index)).Run()
}
func (self *StashCommands) Pop(index int) error {
@@ -58,6 +55,11 @@ func (self *StashCommands) Store(sha string, message string) error {
return self.cmd.New(fmt.Sprintf("git stash store %s", self.cmd.Quote(sha))).Run()
}
+func (self *StashCommands) Sha(index int) (string, error) {
+ sha, _, err := self.cmd.New(fmt.Sprintf("git rev-parse refs/stash@{%d}", index)).DontLog().RunWithOutputs()
+ return strings.Trim(sha, "\r\n"), err
+}
+
func (self *StashCommands) ShowStashEntryCmdObj(index int) oscommands.ICmdObj {
cmdStr := fmt.Sprintf("git stash show -p --stat --color=%s --unified=%d stash@{%d}", self.UserConfig.Git.Paging.ColorArg, self.UserConfig.Git.DiffContextSize, index)
@@ -123,21 +125,16 @@ func (self *StashCommands) SaveStagedChanges(message string) error {
}
func (self *StashCommands) Rename(index int, message string) error {
- output, err := self.Drop(index)
+ sha, err := self.Sha(index)
if err != nil {
return err
}
- // `output` is in the following format:
- // Dropped refs/stash@{0} (f0d0f20f2f61ffd6d6bfe0752deffa38845a3edd)
- stashShaPattern := regexp.MustCompile(`\(([0-9a-f]+)\)`)
- matches := stashShaPattern.FindStringSubmatch(output)
- if len(matches) <= 1 {
- return errors.New("Output of `git stash drop` is invalid") // Usually this error does not occur
+ if err := self.Drop(index); err != nil {
+ return err
}
- stashSha := matches[1]
- err = self.Store(stashSha, message)
+ err = self.Store(sha, message)
if err != nil {
return err
}