mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
40fbce91ce
WIP WIP WIP WIP WIP WIP WIP
14 lines
204 B
Go
14 lines
204 B
Go
package commands
|
|
|
|
import "fmt"
|
|
|
|
// StashEntry : A git stash entry
|
|
type StashEntry struct {
|
|
Index int
|
|
Name string
|
|
}
|
|
|
|
func (s *StashEntry) RefName() string {
|
|
return fmt.Sprintf("stash@{%d}", s.Index)
|
|
}
|