diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-02-14 15:56:32 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-02-14 15:56:32 +0100 |
commit | 09110d8e6d1ddb6f6a22867dcedeebd8f2262780 (patch) | |
tree | c7d50987ec6f134faa6adb70a3f7e328992f0fc3 /config/modules.go | |
parent | 7e990a811d9e23b5a3573c405b70f06a1be9e7b6 (diff) | |
download | go-git-09110d8e6d1ddb6f6a22867dcedeebd8f2262780.tar.gz |
config: added Config.Submodules
Diffstat (limited to 'config/modules.go')
-rw-r--r-- | config/modules.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/modules.go b/config/modules.go index 4d98b16..a17cc27 100644 --- a/config/modules.go +++ b/config/modules.go @@ -30,9 +30,8 @@ func NewModules() *Modules { } const ( - submoduleSection = "submodule" - pathKey = "path" - branchKey = "branch" + pathKey = "path" + branchKey = "branch" ) // Unmarshal parses a git-config file and stores it |