2018-09-17 13:02:30 +02:00
|
|
|
package commands
|
|
|
|
|
2020-08-16 14:01:14 +02:00
|
|
|
import "fmt"
|
|
|
|
|
2018-09-17 13:02:30 +02:00
|
|
|
// Commit : A git commit
|
|
|
|
type Commit struct {
|
2020-03-27 10:12:15 +02:00
|
|
|
Sha string
|
|
|
|
Name string
|
|
|
|
Status string // one of "unpushed", "pushed", "merged", "rebasing" or "selected"
|
|
|
|
Action string // one of "", "pick", "edit", "squash", "reword", "drop", "fixup"
|
|
|
|
Tags []string
|
|
|
|
ExtraInfo string // something like 'HEAD -> master, tag: v0.15.2'
|
|
|
|
Author string
|
|
|
|
UnixTimestamp int64
|
2018-09-17 13:02:30 +02:00
|
|
|
}
|
2020-03-26 00:18:52 +02:00
|
|
|
|
|
|
|
func (c *Commit) ShortSha() string {
|
|
|
|
if len(c.Sha) < 8 {
|
|
|
|
return c.Sha
|
|
|
|
}
|
|
|
|
return c.Sha[:8]
|
|
|
|
}
|
2020-08-16 14:01:14 +02:00
|
|
|
|
|
|
|
func (c *Commit) NameWithSha() string {
|
|
|
|
return fmt.Sprintf("%s %s", c.Sha[:7], c.Name)
|
|
|
|
}
|