Skip to content

Commit 4e4fbb8

Browse files
authored
fix(git): auto-accept commit message when continuing rebase (#71)
Closes #49
1 parent d15411f commit 4e4fbb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/git/git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ func (g *Git) RebaseOnto(newBase, oldBase, branch string) error {
287287

288288
// RebaseContinue continues an in-progress rebase.
289289
func (g *Git) RebaseContinue() error {
290-
return g.runInteractive("rebase", "--continue")
290+
return g.runInteractive("-c", "core.editor=true", "rebase", "--continue")
291291
}
292292

293293
// RebaseAbort aborts an in-progress rebase.

0 commit comments

Comments
 (0)