Fix conflict commit-all flow and terminal copy line breaks

This commit is contained in:
Joe Tretter
2026-05-19 16:35:00 -05:00
parent ceb0d503f4
commit a1bb78c600
4 changed files with 36 additions and 14 deletions

View File

@@ -18,6 +18,11 @@ class GitEditorCommandsTest {
assertNull(parseGitEditorInvocation("git commit -m \"message\""))
}
@Test
fun commitAllWithCombinedMessageOptionDoesNotOpenEditor() {
assertNull(parseGitEditorInvocation("git commit -am \"message\""))
}
@Test
fun amendNoEditDoesNotOpenEditor() {
assertNull(parseGitEditorInvocation("git commit --amend --no-edit"))