mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 21:05:48 +02:00
7 lines
124 B
Go
7 lines
124 B
Go
package commands
|
|
|
|
// Remote Branch : A git remote branch
|
|
type RemoteBranch struct {
|
|
Name string
|
|
RemoteName string
|
|
}
|