From 75470731721a8f63a2a6f006fef70ceeebd55cd6 Mon Sep 17 00:00:00 2001 From: Noah Date: Wed, 3 Jul 2024 21:54:25 +0200 Subject: [PATCH] [wip] message --- pkg/commands/git_commands/commit.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/commands/git_commands/commit.go b/pkg/commands/git_commands/commit.go index 517be276e..a38a0e8ad 100644 --- a/pkg/commands/git_commands/commit.go +++ b/pkg/commands/git_commands/commit.go @@ -76,6 +76,7 @@ func AddCoAuthorToDescription(description string, author string) string { // ResetToCommit reset to commit func (self *CommitCommands) ResetToCommit(hash string, strength string, envVars []string) error { cmdArgs := NewGitCmd("reset").Arg("--"+strength, hash).ToArgv() + self.Log.Warn("Here") return self.cmd.New(cmdArgs). // prevents git from prompting us for input which would freeze the program