mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
Add a "Mark commit as base commit for rebase" command
This allows to do the equivalent of "git rebase --onto <target> <base>", by first marking the <base> commit with the new command, and then selecting the target branch and invoking the usual rebase command there.
This commit is contained in:
@ -33,6 +33,7 @@ func TestGetCommitListDisplayStrings(t *testing.T) {
|
||||
hasUpdateRefConfig bool
|
||||
fullDescription bool
|
||||
cherryPickedCommitShaSet *set.Set[string]
|
||||
markedBaseCommit string
|
||||
diffName string
|
||||
timeFormat string
|
||||
shortTimeFormat string
|
||||
@ -408,6 +409,7 @@ func TestGetCommitListDisplayStrings(t *testing.T) {
|
||||
s.fullDescription,
|
||||
s.cherryPickedCommitShaSet,
|
||||
s.diffName,
|
||||
s.markedBaseCommit,
|
||||
s.timeFormat,
|
||||
s.shortTimeFormat,
|
||||
s.now,
|
||||
|
Reference in New Issue
Block a user