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

9c554428d350b64cb0fadd86f0c7e59ab141f05c

Tucker McKnight <tucker@pangolin.lan> | Sun Dec 07 2025

don't use --branch flag, which only became available in recent git versions
src/repos.ts:42
Before
41
42
43
44
45
46

    const branches = await Promise.all(branchNames.map(async (branchName) => {
      const repoLocation = getLocation(reposConfig, repoName)
      const branchHeadRes = await exec(`git -C ${repoLocation} show-ref --branch ${branchName}`)
      const branchHead = branchHeadRes.stdout.split(" ")[0]
      return {
        name: branchName,
After
41
42
43
44
45
46

    const branches = await Promise.all(branchNames.map(async (branchName) => {
      const repoLocation = getLocation(reposConfig, repoName)
      const branchHeadRes = await exec(`git -C ${repoLocation} show-ref refs/heads/${branchName}`)
      const branchHead = branchHeadRes.stdout.split(" ")[0]
      return {
        name: branchName,