Using GitHub gh, how do I create a PR eg
gh pr create --repo "owner/repo" --title "PR title" --body "PR body"
when not CD'd to the local repo. When I run this command from an arbitrary directory, I get "failed to run git: fatal: not a git repository (or any of the parent directories): .git" So gh is trying to run git behind the scene. The owner/repo I think is the remote repo, but I'm looking for a parameter to specify which local repo to use, like git -C "repo".