I was trying out ticgit, and I can't figure out how to sync tickets to a remote repository using the ti command. ti sync fails with:
Error: git-meta error: git command failed: git fetch failed: fatal: couldn't
find remote ref refs/meta/main
Which makes sense: the remote does not yet have the ticket metadata. The README suggests the existence of a ti push command, which would seem to be appropriate in this situation, but no such command exists:
$ ti push
error: unrecognized subcommand 'push'
I was ultimately able to resolve this by:
- Installing the
git meta CLI, and
- Running
git meta push
After this, ti sync worked as expected.
I was trying out
ticgit, and I can't figure out how to sync tickets to a remote repository using theticommand.ti syncfails with:Which makes sense: the remote does not yet have the ticket metadata. The README suggests the existence of a
ti pushcommand, which would seem to be appropriate in this situation, but no such command exists:I was ultimately able to resolve this by:
git metaCLI, andgit meta pushAfter this,
ti syncworked as expected.