Unverified Commit 41454cfd authored by Eric Knibbe's avatar Eric Knibbe Committed by GitHub

fix(git): disable color.ui in git storage (#6014)

parent 54dbf9ad
......@@ -45,9 +45,10 @@ module.exports = {
await this.git.init()
}
// Disable quotePath
// Disable quotePath, color output
// Link https://git-scm.com/docs/git-config#Documentation/git-config.txt-corequotePath
await this.git.raw(['config', '--local', 'core.quotepath', false])
await this.git.raw(['config', '--local', 'color.ui', false])
// Set default author
await this.git.raw(['config', '--local', 'user.email', this.config.defaultEmail])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment