diff --git a/src/git/git.ts b/src/git/git.ts index 4983a71..5c63016 100644 --- a/src/git/git.ts +++ b/src/git/git.ts @@ -1155,7 +1155,7 @@ export namespace Git { const args = ref.endsWith(':') ? `${ref}./${file}` : `${ref}:./${file}`; try { - const data = await git(opts, 'show', args, '--'); + const data = await git(opts, 'show', '--textconv', args, '--'); return data; } catch (ex) { const msg: string = ex?.toString() ?? '';