diff --git a/server/modules/storage/git/storage.js b/server/modules/storage/git/storage.js index 54a7a4b6..113a56d5 100644 --- a/server/modules/storage/git/storage.js +++ b/server/modules/storage/git/storage.js @@ -47,7 +47,7 @@ module.exports = { // 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]) + await this.git.raw(['config', '--local', 'color.branch', false]) // Set default author await this.git.raw(['config', '--local', 'user.email', this.config.defaultEmail])