summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 1b76e4d..ec55a81 100644
--- a/argv.go
+++ b/argv.go
@@ -42,7 +42,8 @@ type ShowCmd struct {
Mtime *EmptyCmd `arg:"subcommand:mtime" help:"show mtime changes"`
ENV *EmptyCmd `arg:"subcommand:ENV" help:"show lib/env"`
Tag *TagCmd `arg:"subcommand:tag" help:"show the git tag table"`
- Repo *RepoCmd `arg:"subcommand:repos" help:"show repos by type. deprecate."`
+ Repos *RepoCmd `arg:"subcommand:repos" help:"show repos by type. deprecate."`
+ Repo string `arg:"--repo" help:"lookup this repo namespace"`
// MasterDefault *EmptyCmd `arg:"subcommand:masterdefault" help:"run the default behavior for master branches"`
}
@@ -140,6 +141,7 @@ type PullCmd struct {
type TagCmd struct {
List *EmptyCmd `arg:"subcommand:list" help:"list the tags"`
Clean *EmptyCmd `arg:"subcommand:clean" help:"clean out old and duplicate tags"`
+ Remote *EmptyCmd `arg:"subcommand:remote" help:"show remote tags"`
Delete string `arg:"--delete" help:"delete a tag"`
}