ソースを参照

Removes --no-merges from ref resolve

main
Eric Amodio 7年前
コミット
a79208de67
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts ファイルの表示

@ -415,7 +415,7 @@ export class Git {
static async log_resolve(repoPath: string, fileName: string, ref: string) {
try {
const data = await gitCommandCore({ cwd: repoPath }, `log`, `--full-history`, `-M`, `-n1`, `--no-merges`, `--format=%H`, ref, `--`, fileName);
const data = await gitCommandCore({ cwd: repoPath }, `log`, `--full-history`, `-M`, `-n1`, `--format=%H`, ref, `--`, fileName);
return data.trim();
}
catch {

読み込み中…
キャンセル
保存