don't use --branch flag, which only became available in recent git versions

9c554428d350b64cb0fadd86f0c7e59ab141f05c

Tucker McKnight | Sun Dec 07 2025

don't use --branch flag, which only became available in recent git versions
src/repos.ts:42
Before
42
      const branchHeadRes = await exec(`git -C ${repoLocation} show-ref --branch ${branchName}`)
After
42
      const branchHeadRes = await exec(`git -C ${repoLocation} show-ref refs/heads/${branchName}`)