From 2ea1113c7211d09ee2637a00645f1b318fb855f8 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 7 Jan 2025 03:24:05 -0600 Subject: [PATCH] ignore 'gui' in .git/config --- gitConfig.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gitConfig.go b/gitConfig.go index e8c4c4b..3b2ea83 100644 --- a/gitConfig.go +++ b/gitConfig.go @@ -139,6 +139,8 @@ func (rs *RepoStatus) readGitConfig() error { switch currentSection { case "core": rs.gitConfig.core[key] = value + case "gui": + // don't really need gui stuff right now case "pull": // don't store git config pull settings here // probably has 'rebase = false'