1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00

68 lines
1.5 KiB
Go
Raw Normal View History

2020-09-29 18:36:54 +10:00
package models
2022-01-19 18:32:27 +11:00
import (
"fmt"
"github.com/jesseduffield/lazygit/pkg/utils"
)
2022-03-26 22:03:32 +09:00
// Special commit hash for empty tree object
const EmptyTreeCommitHash = "4b825dc642cb6eb9a060e54bf8d69288fbee4904"
// Commit : A git commit
type Commit struct {
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'
2022-05-08 14:23:29 +10:00
AuthorName string // something like 'Jesse Duffield'
AuthorEmail string // something like 'jessedduffield@gmail.com'
UnixTimestamp int64
2021-06-05 16:39:59 +10:00
// SHAs of parent commits (will be multiple if it's a merge commit)
Parents []string
}
2020-03-26 09:18:52 +11:00
func (c *Commit) ShortSha() string {
2022-01-19 18:32:27 +11:00
return utils.ShortSha(c.Sha)
2020-03-26 09:18:52 +11:00
}
2022-05-12 19:16:58 +09:00
func (c *Commit) FullRefName() string {
return c.Sha
}
2020-08-19 22:57:22 +10:00
func (c *Commit) RefName() string {
return c.Sha
}
2022-03-26 22:03:32 +09:00
func (c *Commit) ParentRefName() string {
if c.IsFirstCommit() {
return EmptyTreeCommitHash
}
return c.RefName() + "^"
}
func (c *Commit) IsFirstCommit() bool {
return len(c.Parents) == 0
}
func (c *Commit) ID() string {
return c.RefName()
}
func (c *Commit) Description() string {
return fmt.Sprintf("%s %s", c.Sha[:7], c.Name)
}
2021-06-05 16:39:59 +10:00
func (c *Commit) IsMerge() bool {
return len(c.Parents) > 1
}
// returns true if this commit is not actually in the git log but instead
// is from a TODO file for an interactive rebase.
func (c *Commit) IsTODO() bool {
return c.Action != ""
}