mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-30 09:16:47 +02:00
8 lines
124 B
Go
8 lines
124 B
Go
package commands
|
|
|
|
// Remote Branch : A git remote branch
|
|
type RemoteBranch struct {
|
|
Name string
|
|
RemoteName string
|
|
}
|