summaryrefslogtreecommitdiffstats
path: root/pkg/commands
diff options
context:
space:
mode:
authorLuka Markušić <luka.markusic@microblink.com>2022-04-15 08:03:25 +0200
committerLuka Markušić <luka.markusic@microblink.com>2022-04-17 11:08:36 +0200
commitbd9daf80b78789f28b151164b4baa45db3eb4898 (patch)
treeee84383f8696016c68d1ca9dd8621b46b89b4422 /pkg/commands
parent1ae2dc994102841a189c85ca4c61b88d7cf82724 (diff)
Add integration tests
Diffstat (limited to 'pkg/commands')
-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 71b8f655b..c479d8610 100644
--- a/pkg/commands/git_commands/stash.go
+++ b/pkg/commands/git_commands/stash.go
@@ -53,7 +53,7 @@ func (self *StashCommands) StashAndKeepIndex(message string) error {
}
func (self *StashCommands) StashUnstagedChanges(message string) error {
- if err := self.cmd.New("git commit -m \"WIP\"").Run(); err != nil {
+ if err := self.cmd.New("git commit --no-verify -m \"[lazygit] stashing unstaged changes\"").Run(); err != nil {
return err
}
if err := self.Save(message); err != nil {