mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-17 14:11:02 +02:00
add remote model
This commit is contained in:
parent
7849f91d80
commit
092f27495a
@ -1061,3 +1061,20 @@ func (c *GitCommand) BeginInteractiveRebaseForCommit(commits []*Commit, commitIn
|
|||||||
func (c *GitCommand) SetUpstreamBranch(upstream string) error {
|
func (c *GitCommand) SetUpstreamBranch(upstream string) error {
|
||||||
return c.OSCommand.RunCommand(fmt.Sprintf("git branch -u %s", upstream))
|
return c.OSCommand.RunCommand(fmt.Sprintf("git branch -u %s", upstream))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *GitCommand) GetRemotes() ([]*Remote, error) {
|
||||||
|
goGitRemotes, err := c.Repo.Remotes()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
remotes := make([]*Remote, len(goGitRemotes))
|
||||||
|
// TODO: consider including the goGitRemote itself
|
||||||
|
for i, goGitRemote := range goGitRemotes {
|
||||||
|
remotes[i] = &Remote{
|
||||||
|
Name: goGitRemote.Config().Name,
|
||||||
|
Urls: goGitRemote.Config().URLs,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return remotes, nil
|
||||||
|
}
|
||||||
|
14
pkg/commands/remote.go
Normal file
14
pkg/commands/remote.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package commands
|
||||||
|
|
||||||
|
// Remote : A git remote
|
||||||
|
type Remote struct {
|
||||||
|
Name string
|
||||||
|
Urls []string
|
||||||
|
Selected bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDisplayStrings returns the display string of a remote
|
||||||
|
func (r *Remote) GetDisplayStrings(isFocused bool) []string {
|
||||||
|
|
||||||
|
return []string{r.Name}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user