浏览代码

Adds -- before filename for better git handling

main
Eric Amodio 6 年前
父节点
当前提交
bf697d86ce
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/git/git.ts

+ 2
- 2
src/git/git.ts 查看文件

@ -466,9 +466,8 @@ export class Git {
if (options.ref2) {
params.push(options.ref2);
}
params.push('--', fileName);
return git<string>({ cwd: repoPath }, ...params);
return git<string>({ cwd: repoPath }, ...params, '--', fileName);
}
static fetch(repoPath: string, options: { all?: boolean; remote?: string } = {}) {
@ -632,6 +631,7 @@ export class Git {
const data = await git<string>(
{ cwd: repoPath, exceptionHandler: ignoreExceptionsHandler },
...params,
'--',
fileName
);
return data === '' ? undefined : data.trim();

正在加载...
取消
保存