Branch

commit first line goes here

Sun Dec 07 2025

Tucker McKnight <tucker@pangolin.lan>

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

9c554428d350b64cb0fadd86f0c7e59ab141f05c

Side-by-side
Stacked
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}`)