mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-08 04:04:22 +02:00
Merge pull request #2582 from stefanhaller/config-for-showing-branch-heads
This commit is contained in:
commit
4160fa518c
@ -57,6 +57,7 @@ gui:
|
|||||||
showFileTree: true # for rendering changes files in a tree format
|
showFileTree: true # for rendering changes files in a tree format
|
||||||
showListFooter: true # for seeing the '5 of 20' message in list panels
|
showListFooter: true # for seeing the '5 of 20' message in list panels
|
||||||
showRandomTip: true
|
showRandomTip: true
|
||||||
|
experimentalShowBranchHeads: false # visualize branch heads with (*) in commits list
|
||||||
showBottomLine: true # for hiding the bottom information line (unless it has important information to tell you)
|
showBottomLine: true # for hiding the bottom information line (unless it has important information to tell you)
|
||||||
showCommandLog: true
|
showCommandLog: true
|
||||||
showIcons: false
|
showIcons: false
|
||||||
|
@ -48,6 +48,7 @@ type GuiConfig struct {
|
|||||||
ShowCommandLog bool `yaml:"showCommandLog"`
|
ShowCommandLog bool `yaml:"showCommandLog"`
|
||||||
ShowBottomLine bool `yaml:"showBottomLine"`
|
ShowBottomLine bool `yaml:"showBottomLine"`
|
||||||
ShowIcons bool `yaml:"showIcons"`
|
ShowIcons bool `yaml:"showIcons"`
|
||||||
|
ExperimentalShowBranchHeads bool `yaml:"experimentalShowBranchHeads"`
|
||||||
CommandLogSize int `yaml:"commandLogSize"`
|
CommandLogSize int `yaml:"commandLogSize"`
|
||||||
SplitDiff string `yaml:"splitDiff"`
|
SplitDiff string `yaml:"splitDiff"`
|
||||||
SkipRewordInEditorWarning bool `yaml:"skipRewordInEditorWarning"`
|
SkipRewordInEditorWarning bool `yaml:"skipRewordInEditorWarning"`
|
||||||
@ -416,6 +417,7 @@ func GetDefaultConfig() *UserConfig {
|
|||||||
ShowFileTree: true,
|
ShowFileTree: true,
|
||||||
ShowRandomTip: true,
|
ShowRandomTip: true,
|
||||||
ShowIcons: false,
|
ShowIcons: false,
|
||||||
|
ExperimentalShowBranchHeads: false,
|
||||||
CommandLogSize: 8,
|
CommandLogSize: 8,
|
||||||
SplitDiff: "auto",
|
SplitDiff: "auto",
|
||||||
SkipRewordInEditorWarning: false,
|
SkipRewordInEditorWarning: false,
|
||||||
|
@ -277,7 +277,7 @@ func displayCommit(
|
|||||||
} else {
|
} else {
|
||||||
if len(commit.Tags) > 0 {
|
if len(commit.Tags) > 0 {
|
||||||
tagString = theme.DiffTerminalColor.SetBold().Sprint(strings.Join(commit.Tags, " ")) + " "
|
tagString = theme.DiffTerminalColor.SetBold().Sprint(strings.Join(commit.Tags, " ")) + " "
|
||||||
} else if commit.ExtraInfo != "" {
|
} else if common.UserConfig.Gui.ExperimentalShowBranchHeads && commit.ExtraInfo != "" {
|
||||||
tagString = style.FgMagenta.SetBold().Sprint("(*)") + " "
|
tagString = style.FgMagenta.SetBold().Sprint("(*)") + " "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,10 +23,10 @@ var DropTodoCommitWithUpdateRef = NewIntegrationTest(NewIntegrationTestArgs{
|
|||||||
t.Views().Commits().
|
t.Views().Commits().
|
||||||
Focus().
|
Focus().
|
||||||
Lines(
|
Lines(
|
||||||
Contains("(*) commit 06").IsSelected(),
|
Contains("commit 06").IsSelected(),
|
||||||
Contains("commit 05"),
|
Contains("commit 05"),
|
||||||
Contains("commit 04"),
|
Contains("commit 04"),
|
||||||
Contains("(*) commit 03"),
|
Contains("commit 03"),
|
||||||
Contains("commit 02"),
|
Contains("commit 02"),
|
||||||
Contains("commit 01"),
|
Contains("commit 01"),
|
||||||
).
|
).
|
||||||
@ -34,11 +34,11 @@ var DropTodoCommitWithUpdateRef = NewIntegrationTest(NewIntegrationTestArgs{
|
|||||||
Press(keys.Universal.Edit).
|
Press(keys.Universal.Edit).
|
||||||
Focus().
|
Focus().
|
||||||
Lines(
|
Lines(
|
||||||
Contains("pick").Contains("(*) commit 06"),
|
Contains("pick").Contains("commit 06"),
|
||||||
Contains("pick").Contains("commit 05"),
|
Contains("pick").Contains("commit 05"),
|
||||||
Contains("pick").Contains("commit 04"),
|
Contains("pick").Contains("commit 04"),
|
||||||
Contains("update-ref").Contains("master"),
|
Contains("update-ref").Contains("master"),
|
||||||
Contains("pick").Contains("(*) commit 03"),
|
Contains("pick").Contains("commit 03"),
|
||||||
Contains("pick").Contains("commit 02"),
|
Contains("pick").Contains("commit 02"),
|
||||||
Contains("<-- YOU ARE HERE --- commit 01"),
|
Contains("<-- YOU ARE HERE --- commit 01"),
|
||||||
).
|
).
|
||||||
@ -50,9 +50,9 @@ var DropTodoCommitWithUpdateRef = NewIntegrationTest(NewIntegrationTestArgs{
|
|||||||
t.Views().Commits().
|
t.Views().Commits().
|
||||||
IsFocused().
|
IsFocused().
|
||||||
Lines(
|
Lines(
|
||||||
Contains("(*) commit 06"),
|
Contains("commit 06"),
|
||||||
Contains("commit 04"),
|
Contains("commit 04"),
|
||||||
Contains("(*) commit 03"),
|
Contains("commit 03"),
|
||||||
Contains("commit 02"),
|
Contains("commit 02"),
|
||||||
Contains("commit 01"),
|
Contains("commit 01"),
|
||||||
)
|
)
|
||||||
|
@ -0,0 +1,62 @@
|
|||||||
|
package interactive_rebase
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/jesseduffield/lazygit/pkg/config"
|
||||||
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
||||||
|
)
|
||||||
|
|
||||||
|
var DropTodoCommitWithUpdateRefShowBranchHeads = NewIntegrationTest(NewIntegrationTestArgs{
|
||||||
|
Description: "Drops a commit during interactive rebase when there is an update-ref in the git-rebase-todo file (with experimentalShowBranchHeads on)",
|
||||||
|
ExtraCmdArgs: "",
|
||||||
|
Skip: false,
|
||||||
|
GitVersion: From("2.38.0"),
|
||||||
|
SetupConfig: func(config *config.AppConfig) {
|
||||||
|
config.UserConfig.Gui.ExperimentalShowBranchHeads = true
|
||||||
|
},
|
||||||
|
SetupRepo: func(shell *Shell) {
|
||||||
|
shell.
|
||||||
|
CreateNCommits(3).
|
||||||
|
NewBranch("mybranch").
|
||||||
|
CreateNCommitsStartingAt(3, 4)
|
||||||
|
|
||||||
|
shell.SetConfig("rebase.updateRefs", "true")
|
||||||
|
},
|
||||||
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
||||||
|
t.Views().Commits().
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("(*) commit 06").IsSelected(),
|
||||||
|
Contains("commit 05"),
|
||||||
|
Contains("commit 04"),
|
||||||
|
Contains("(*) commit 03"),
|
||||||
|
Contains("commit 02"),
|
||||||
|
Contains("commit 01"),
|
||||||
|
).
|
||||||
|
NavigateToLine(Contains("commit 01")).
|
||||||
|
Press(keys.Universal.Edit).
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("pick").Contains("(*) commit 06"),
|
||||||
|
Contains("pick").Contains("commit 05"),
|
||||||
|
Contains("pick").Contains("commit 04"),
|
||||||
|
Contains("update-ref").Contains("master"),
|
||||||
|
Contains("pick").Contains("(*) commit 03"),
|
||||||
|
Contains("pick").Contains("commit 02"),
|
||||||
|
Contains("<-- YOU ARE HERE --- commit 01"),
|
||||||
|
).
|
||||||
|
NavigateToLine(Contains("commit 05")).
|
||||||
|
Press(keys.Universal.Remove)
|
||||||
|
|
||||||
|
t.Common().ContinueRebase()
|
||||||
|
|
||||||
|
t.Views().Commits().
|
||||||
|
IsFocused().
|
||||||
|
Lines(
|
||||||
|
Contains("(*) commit 06"),
|
||||||
|
Contains("commit 04"),
|
||||||
|
Contains("(*) commit 03"),
|
||||||
|
Contains("commit 02"),
|
||||||
|
Contains("commit 01"),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
})
|
@ -93,6 +93,7 @@ var tests = []*components.IntegrationTest{
|
|||||||
interactive_rebase.AmendMerge,
|
interactive_rebase.AmendMerge,
|
||||||
interactive_rebase.AmendNonHeadCommitDuringRebase,
|
interactive_rebase.AmendNonHeadCommitDuringRebase,
|
||||||
interactive_rebase.DropTodoCommitWithUpdateRef,
|
interactive_rebase.DropTodoCommitWithUpdateRef,
|
||||||
|
interactive_rebase.DropTodoCommitWithUpdateRefShowBranchHeads,
|
||||||
interactive_rebase.EditFirstCommit,
|
interactive_rebase.EditFirstCommit,
|
||||||
interactive_rebase.EditNonTodoCommitDuringRebase,
|
interactive_rebase.EditNonTodoCommitDuringRebase,
|
||||||
interactive_rebase.FixupFirstCommit,
|
interactive_rebase.FixupFirstCommit,
|
||||||
|
Loading…
Reference in New Issue
Block a user