From 7f177c4750b4acf70cc3fd3d43c19685179e527b Mon Sep 17 00:00:00 2001 From: amine Date: Thu, 31 Oct 2019 19:05:50 +0100 Subject: repository: add ReadTimestamp methods and improve naming --- repository/git.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repository/git.go') 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. -- cgit