1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/commands/models/remote_branch.go

32 lines
564 B
Go
Raw Normal View History

2020-09-29 10:41:06 +02:00
package models
2019-11-17 01:23:06 +02:00
// Remote Branch : A git remote branch
type RemoteBranch struct {
Name string
RemoteName string
2019-11-17 01:23:06 +02:00
}
func (r *RemoteBranch) FullName() string {
return r.RemoteName + "/" + r.Name
}
2020-08-19 14:57:22 +02:00
2022-05-12 12:16:58 +02:00
func (r *RemoteBranch) FullRefName() string {
return "refs/remotes/" + r.FullName()
}
2020-08-19 14:57:22 +02:00
func (r *RemoteBranch) RefName() string {
return r.FullName()
}
2022-03-26 15:18:08 +02:00
func (r *RemoteBranch) ParentRefName() string {
return r.RefName() + "^"
}
func (r *RemoteBranch) ID() string {
return r.RefName()
}
func (r *RemoteBranch) Description() string {
return r.RefName()
}