1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-12 04:23:03 +02:00
lazygit/pkg/commands/remote_branch.go

12 lines
206 B
Go
Raw Normal View History

2019-11-17 01:23:06 +02:00
package commands
// 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
}