mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-04-11 19:29:52 +02:00
I've optimised for muscle memory backwards compatibility here: - Outside interactive rebase: press 'f' then instead of a confirmation panel, a menu appears where you can choose to keep the selected commit's message - Inside interactive rebase: press 'f' then press 'c' to see the menu for keeping the message, where if you press 'c' again it will retain the current message. so 'fcc' is the chord to press. We're also now showing the -C flag (which is what enables the behaviour) against the todo. I've picked the 'c' keybinding because 'C' was taken and it corresponds to the flag. Previously that showed a warning about a change in keybinding for cherry picking but it's been ages since we've made that change so I'm happy to retire it.
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package interactive_rebase
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var FixupKeepMessage = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Fixup a commit, keeping its commit message",
|
|
ExtraCmdArgs: []string{},
|
|
Skip: false,
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
SetupRepo: func(shell *Shell) {
|
|
shell.
|
|
CreateFileAndAdd("file1.txt", "File1 Content\n").Commit("First Commit").
|
|
CreateFileAndAdd("file2.txt", "File2 Content\n").Commit("Second Commit").
|
|
CreateFileAndAdd("file3.txt", "File3 Content\n").Commit("Third Commit")
|
|
},
|
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
|
t.Views().Commits().
|
|
Focus().
|
|
Lines(
|
|
Contains("Third Commit"),
|
|
Contains("Second Commit"),
|
|
Contains("First Commit"),
|
|
).
|
|
NavigateToLine(Contains("Second Commit")).
|
|
Press(keys.Commits.MarkCommitAsFixup).
|
|
Tap(func() {
|
|
t.ExpectPopup().Menu().
|
|
Title(Equals("Fixup")).
|
|
Select(Contains("use this commit's message")).
|
|
Confirm()
|
|
}).
|
|
Lines(
|
|
Contains("Third Commit"),
|
|
Contains("Second Commit").IsSelected(),
|
|
)
|
|
|
|
t.Views().Main().
|
|
// The resulting commit should have the message from the fixup commit,
|
|
// not the target commit
|
|
Content(Contains("Second Commit")).
|
|
Content(DoesNotContain("First Commit")).
|
|
Content(Contains("+File1 Content")).
|
|
Content(Contains("+File2 Content"))
|
|
},
|
|
})
|