(gitDir: string)
| 290 | }; |
| 291 | |
| 292 | export const getCurrentBranchName = async (gitDir: string): Promise<string> => { |
| 293 | const { stdout } = await runGit(['branch', '--show-current'], gitDir); |
| 294 | return stdout.trim(); |
| 295 | }; |
| 296 | |
| 297 | export const getRemoteBranchHeadSubject = async ( |
| 298 | remoteGitDir: string, |
no test coverage detected
searching dependent graphs…