Ver a proveniência

Closes #866. Adds ''-textconv' to show to support .gitattributes.

main
Martin Campbell há 4 anos
committed by Eric Amodio
ascendente
cometimento
e5a338c0e4
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Ver ficheiro

@ -1155,7 +1155,7 @@ export namespace Git {
const args = ref.endsWith(':') ? `${ref}./${file}` : `${ref}:./${file}`;
try {
const data = await git<TOut>(opts, 'show', args, '--');
const data = await git<TOut>(opts, 'show', '--textconv', args, '--');
return data;
} catch (ex) {
const msg: string = ex?.toString() ?? '';

Carregando…
Cancelar
Guardar