diff options
author | Michael Muré <batolettre@gmail.com> | 2019-06-07 02:53:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 02:53:21 +0200 |
commit | d69dcce806d280ddbd6a4fb17700153bc03da90b (patch) | |
tree | da07a7beadc77b3fe5e99f09bd38d919566a0191 /repository/repo.go | |
parent | a9629dbad15f0e80ea244eb81abda4ddc08f7a0e (diff) | |
parent | 1c2ad95960c09d029e6306ac5a5ea76c58e8b5c9 (diff) | |
download | git-bug-d69dcce806d280ddbd6a4fb17700153bc03da90b.tar.gz git-bug-d69dcce806d280ddbd6a4fb17700153bc03da90b.zip |
Merge pull request #153 from A-Hilaly/bridge-configuration
[Breaking] Bridge configuration enhancements
Diffstat (limited to 'repository/repo.go')
-rw-r--r-- | repository/repo.go | 3 |
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 |