소스 검색

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

main
Martin Campbell 4 년 전
committed by Eric Amodio
부모
커밋
e5a338c0e4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts 파일 보기

@ -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() ?? '';

불러오는 중...
취소
저장