1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-22 05:29:44 +02:00
lazygit/pkg/commands/remote_branch.go

24 lines
401 B
Go
Raw Normal View History

2019-11-17 10:23:06 +11:00
package commands
// Remote Branch : A git remote branch
type RemoteBranch struct {
Name string
RemoteName string
2019-11-17 10:23:06 +11:00
}
func (r *RemoteBranch) FullName() string {
return r.RemoteName + "/" + r.Name
}
2020-08-19 22:57:22 +10:00
func (r *RemoteBranch) RefName() string {
return r.FullName()
}
func (r *RemoteBranch) ID() string {
return r.RefName()
}
func (r *RemoteBranch) Description() string {
return r.RefName()
}