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
12 lines
206 B
Go
12 lines
206 B
Go
package commands
|
|
|
|
// Remote Branch : A git remote branch
|
|
type RemoteBranch struct {
|
|
Name string
|
|
RemoteName string
|
|
}
|
|
|
|
func (r *RemoteBranch) FullName() string {
|
|
return r.RemoteName + "/" + r.Name
|
|
}
|