()
| 44 | }; |
| 45 | |
| 46 | const getCurrentBranch = async (): Promise<string> => { |
| 47 | const { stdout } = await execa('git', ['branch', '--show-current']); |
| 48 | return stdout.trim(); |
| 49 | }; |
| 50 | |
| 51 | const displayPushUrl = (stderr: string) => { |
| 52 | const urlMatch = stderr.match(/https?:\/\/\S+/); |
no test coverage detected
searching dependent graphs…