From 8969464b00c91f3aec1a0ff6e9724eacd87c790f Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 11 Apr 2021 11:42:08 +1000 Subject: [PATCH] log TODO content when interactive rebasing --- pkg/commands/rebasing.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/commands/rebasing.go b/pkg/commands/rebasing.go index b3ff894fa..ca0b432e2 100644 --- a/pkg/commands/rebasing.go +++ b/pkg/commands/rebasing.go @@ -77,6 +77,8 @@ func (c *GitCommand) PrepareInteractiveRebaseCommand(baseSha string, todo string gitSequenceEditor := ex if todo == "" { gitSequenceEditor = "true" + } else { + c.OSCommand.LogCommand(fmt.Sprintf("Creating TODO file for interactive rebase: \n\n%s", todo), false) } cmd.Env = os.Environ()