aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-06-07 02:53:21 +0200
committerGitHub <noreply@github.com>2019-06-07 02:53:21 +0200
commitd69dcce806d280ddbd6a4fb17700153bc03da90b (patch)
treeda07a7beadc77b3fe5e99f09bd38d919566a0191 /repository/repo.go
parenta9629dbad15f0e80ea244eb81abda4ddc08f7a0e (diff)
parent1c2ad95960c09d029e6306ac5a5ea76c58e8b5c9 (diff)
downloadgit-bug-d69dcce806d280ddbd6a4fb17700153bc03da90b.tar.gz
Merge pull request #153 from A-Hilaly/bridge-configuration
[Breaking] Bridge configuration enhancements
Diffstat (limited to 'repository/repo.go')
-rw-r--r--repository/repo.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/repository/repo.go b/repository/repo.go
index f3c2de6d..44204493 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -27,6 +27,9 @@ type RepoCommon interface {
// GetCoreEditor returns the name of the editor that the user has used to configure git.
GetCoreEditor() (string, error)
+ // GetRemotes returns the configured remotes repositories.
+ GetRemotes() (map[string]string, error)
+
// StoreConfig store a single key/value pair in the config of the repo
StoreConfig(key string, value string) error