Unverified Commit b3731dd2 authored by myml's avatar myml Committed by GitHub

fix: handle unicode chars when syncing files using git storage (#5272)

git has the quotopath option enabled by default, filepaths with unicode characters will be escaped, causing the wiki to not handle changes.
parent 78d02dc8
......@@ -45,6 +45,10 @@ module.exports = {
await this.git.init()
}
// Disable quotePath
// Link https://git-scm.com/docs/git-config#Documentation/git-config.txt-corequotePath
await this.git.raw(['config', '--local', 'core.quotepath', false])
// Set default author
await this.git.raw(['config', '--local', 'user.email', this.config.defaultEmail])
await this.git.raw(['config', '--local', 'user.name', this.config.defaultName])
......
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