summaryrefslogtreecommitdiff
path: root/gitConfig.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-22 15:29:22 -0600
committerJeff Carr <[email protected]>2024-02-22 15:29:22 -0600
commitcd5f1d9d0f52196d6ea07684a4307369893911bd (patch)
tree7338ba80799ad96b25eae2fa55bcbca211c48fc7 /gitConfig.go
parent5aaf02ee3aeafc17a70ddc32619a17ae19a6f1ed (diff)
add NewestTag() and Tag.Age()
Diffstat (limited to 'gitConfig.go')
-rw-r--r--gitConfig.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/gitConfig.go b/gitConfig.go
index 519d294..633d732 100644
--- a/gitConfig.go
+++ b/gitConfig.go
@@ -136,6 +136,9 @@ func (rs *RepoStatus) readGitConfig() error {
switch currentSection {
case "core":
rs.gitConfig.core[key] = value
+ case "pull":
+ // don't store git config pull settings here
+ // probably has 'rebase = false'
case "remote":
test, ok := rs.gitConfig.remotes[currentName]
if !ok {