Parcourir la source

Removes --no-merges from ref resolve

main
Eric Amodio il y a 7 ans
Parent
révision
a79208de67
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Voir le fichier

@ -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 {

Chargement…
Annuler
Enregistrer