diff options
Diffstat (limited to 'repository/git.go')
-rw-r--r-- | repository/git.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/repository/git.go b/repository/git.go index 5ca81c14..c25309f5 100644 --- a/repository/git.go +++ b/repository/git.go @@ -34,12 +34,12 @@ type GitRepo struct { // LocalConfig . func (repo *GitRepo) LocalConfig() Config { - return NewGitConfig(repo, false) + return newGitConfig(repo, false) } // GlobalConfig . func (repo *GitRepo) GlobalConfig() Config { - return NewGitConfig(repo, true) + return newGitConfig(repo, true) } // Run the given git command with the given I/O reader/writers, returning an error if it fails. |