show method
Implementation
Future<List<int>> show({required String ref, required String filePath}) async {
final pr = await myRunGit(
['show', '$ref:$filePath'],
processWorkingDir: directory,
// to allow binary
stdoutEncoding: null,
stderrEncoding: null,
);
return pr.stdout as List<int>;
}