diff options
author | Sladyn <gunnerforlife00@gmail.com> | 2019-05-25 15:13:40 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-05-29 22:58:01 +0200 |
commit | 2c4c0132bf8c9e9819cc9a76d4a04ed4daeedb3b (patch) | |
tree | e8c4e4c0f44fa614c3c8191ebe3d61f9776a7706 /repository/git.go | |
parent | f01b9bca12cb51f1f8f46b5e58bb3cb4be8126de (diff) | |
download | git-bug-2c4c0132bf8c9e9819cc9a76d4a04ed4daeedb3b.tar.gz |
Add GetRemotes functionalities
Diffstat (limited to 'repository/git.go')
-rw-r--r-- | repository/git.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repository/git.go b/repository/git.go index 4d6ca19a..801504f2 100644 --- a/repository/git.go +++ b/repository/git.go @@ -162,6 +162,28 @@ func (repo *GitRepo) GetCoreEditor() (string, error) { return repo.runGitCommand("var", "GIT_EDITOR") } +// GetRemotes returns the configured remotes repositories. +func (repo *GitRepo) GetRemotes() (map[string]string, error) { + stdout, err := repo.runGitCommand("remote", "--verbose") + if err != nil { + return nil, err + } + + lines := strings.Split(stdout, "\n") + remotes := make(map[string]string, len(lines)) + + for _, line := range lines { + elements := strings.Fields(line) + if len(elements) != 3 { + return nil, fmt.Errorf("unexpected output format: %s", line) + } + + remotes[elements[0]] = elements[1] + } + + return remotes, nil +} + // StoreConfig store a single key/value pair in the config of the repo func (repo *GitRepo) StoreConfig(key string, value string) error { _, err := repo.runGitCommand("config", "--replace-all", key, value) |