aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
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