cli/pkg/cmdutil
Mislav Marohnić c095a4bead Allow explicitly specifying the hostname for gh operations
Accept the "HOST/OWNER/REPO" syntax or passing a full URL for both the
`--repo` flag and the GH_REPO environment variable and allow setting
GH_HOST environment variable to override just the hostname for
operations that assume "github.com" by default.

Examples:

    $ gh repo clone example.org/owner/repo
    $ GH_HOST=example.org gh repo clone repo

    $ GH_HOST=example.org gh api user
    $ GH_HOST=example.org gh gist create myfile.txt

    $ gh issue list -R example.org/owner/repo
    $ gh issue list -R https://example.org/owner/repo.git
    $ GH_REPO=example.org/owner/repo gh issue list
2020-08-12 16:16:34 +02:00
..
args.go Improve no args error handler and extend it to other commands 2020-06-15 21:01:32 +02:00
errors.go Extract cmdutil package 2020-05-20 15:21:31 +02:00
factory.go Isolate pr review command 2020-07-29 19:35:54 +02:00
legacy.go Isolate pr review command 2020-07-29 19:35:54 +02:00
repo_override.go Allow explicitly specifying the hostname for gh operations 2020-08-12 16:16:34 +02:00