From d179b8b7ec7815ccac73e00f35f5cfbdc4ddbe2e Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 31 Jul 2022 14:38:32 +0200 Subject: bug: fix an issue where Id would be used, then changed due to metadata --- repository/gogit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repository/gogit.go') diff --git a/repository/gogit.go b/repository/gogit.go index 71cddfb2..d94965cb 100644 --- a/repository/gogit.go +++ b/repository/gogit.go @@ -235,7 +235,7 @@ func (repo *GoGitRepo) Keyring() Keyring { return repo.keyring } -// GetUserName returns the name the the user has used to configure git +// GetUserName returns the name the user has used to configure git func (repo *GoGitRepo) GetUserName() (string, error) { return repo.AnyConfig().ReadString("user.name") } -- cgit