mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-01 13:17:53 +02:00
Visualize branch heads in commits panel
Useful when working with stacked branches.
This commit is contained in:
parent
a0d179b6dc
commit
740474c10c
@ -277,6 +277,8 @@ 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 != "" {
|
||||||
|
tagString = style.FgMagenta.SetBold().Sprint("(*)") + " "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user