We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a9c03 commit 21a7a28Copy full SHA for 21a7a28
1 file changed
src/git/cli.ts
@@ -13,7 +13,7 @@ const exec = util.promisify(_exec);
13
* Run a `git` subcommand and return the result, with stdout and stderr available.
14
*/
15
function _execute(cwd: string, subcommand: string, options: string[] = []) {
16
- const command = `git ${subcommand} ${options.join(" ")}`;
+ const command = `git -c 'core.quotePath=false' ${subcommand} ${options.join(" ")}`;
17
18
console.debug(`Running command: ${command}, cwd: ${cwd}`);
19
0 commit comments