diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-12 15:57:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 15:57:34 +0100 |
commit | 2dac5c1d1b6cb7d9a303a7346c3c7a3120d4ad40 (patch) | |
tree | f5f87cd723a0343e9744f2324ad1a8f1ff55bf90 /config/config.go | |
parent | df9748cfb51db9c406e3df063badbd8c78ee819d (diff) | |
download | go-git-2dac5c1d1b6cb7d9a303a7346c3c7a3120d4ad40.tar.gz |
config: Config, bare flag (#177)
* config.Config: bare flag
* changes
* changes
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index ea8ae07..dc76571 100644 --- a/config/config.go +++ b/config/config.go @@ -26,6 +26,9 @@ var ( // Config contains the repository configuration type Config struct { + Core struct { + IsBare bool + } Remotes map[string]*RemoteConfig } |