aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
authorSladyn <gunnerforlife00@gmail.com>2019-05-25 15:13:40 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-05-29 22:58:01 +0200
commit2c4c0132bf8c9e9819cc9a76d4a04ed4daeedb3b (patch)
treee8c4e4c0f44fa614c3c8191ebe3d61f9776a7706 /repository/repo.go
parentf01b9bca12cb51f1f8f46b5e58bb3cb4be8126de (diff)
downloadgit-bug-2c4c0132bf8c9e9819cc9a76d4a04ed4daeedb3b.tar.gz
Add GetRemotes functionalities
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