From e325c8499a102ba8a6a84236c02dd7951f46cec5 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 23 Aug 2014 23:58:56 +0800 Subject: [PATCH] Fix and set git config --- models/repo.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/models/repo.go b/models/repo.go index 218887cca..9666192df 100644 --- a/models/repo.go +++ b/models/repo.go @@ -110,6 +110,13 @@ func NewRepoContext() { log.Fatal(4, "Fail to set git user.name: %s", stderr) } } + + // Set git some configurations. + if _, stderr, err = process.Exec("NewRepoContext(git config --global core.quotepath false)", + "git", "config", "--global", "core.quotepath", "false"); err != nil { + log.Fatal(4, "Fail to execute 'git config --global core.quotepath false': %s", stderr) + } + } // Repository represents a git repository.