upstreamBranchName function
Returns the name of the upstream branch
Implementation
Future<String> upstreamBranchName(Directory testDir) async {
final result = UpstreamBranch(
ggLog: print,
).get(directory: testDir, ggLog: print);
return result;
}