mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
30 lines
485 B
Go
30 lines
485 B
Go
package models
|
|
|
|
import "fmt"
|
|
|
|
// StashEntry : A git stash entry
|
|
type StashEntry struct {
|
|
Index int
|
|
Name string
|
|
}
|
|
|
|
func (s *StashEntry) FullRefName() string {
|
|
return s.RefName()
|
|
}
|
|
|
|
func (s *StashEntry) RefName() string {
|
|
return fmt.Sprintf("stash@{%d}", s.Index)
|
|
}
|
|
|
|
func (s *StashEntry) ParentRefName() string {
|
|
return s.RefName() + "^"
|
|
}
|
|
|
|
func (s *StashEntry) ID() string {
|
|
return s.RefName()
|
|
}
|
|
|
|
func (s *StashEntry) Description() string {
|
|
return s.RefName() + ": " + s.Name
|
|
}
|