mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
27 lines
464 B
Go
27 lines
464 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/fatih/color"
|
|
)
|
|
|
|
// Commit : A git commit
|
|
type Commit struct {
|
|
Sha string
|
|
Name string
|
|
Pushed bool
|
|
DisplayString string
|
|
}
|
|
|
|
func (c *Commit) GetDisplayStrings() []string {
|
|
red := color.New(color.FgRed)
|
|
yellow := color.New(color.FgYellow)
|
|
white := color.New(color.FgWhite)
|
|
|
|
shaColor := yellow
|
|
if c.Pushed {
|
|
shaColor = red
|
|
}
|
|
|
|
return []string{shaColor.Sprint(c.Sha), white.Sprint(c.Name)}
|
|
}
|