diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 33 |
1 files changed, 16 insertions, 17 deletions
@@ -7,23 +7,22 @@ package main var argv args type args struct { - List bool `arg:"--list" help:"list found repos"` - ListConf bool `arg:"--list-conf" help:"list your .config/forge/ configuration"` - Scan bool `arg:"--scan" help:"rescan your repos"` - ReadOnly bool `arg:"--readonly" help:"include read-only repos"` - GetMine bool `arg:"--mine" help:"download private and writeable repos"` - GetFav bool `arg:"--favorites" help:"download repos marked as favorites"` - Pull bool `arg:"--git-pull" help:"run 'git pull' on all your repos"` - Build bool `arg:"--build" default:"true" help:"also try to build it"` - Install bool `arg:"--install" help:"try to install every binary package"` - RedoGoMod bool `arg:"--RedoGoMod" help:"remake all the go.sum and go.mod files"` - DryRun bool `arg:"--dry-run" help:"show what would be run"` - Real bool `arg:"--fix" help:"fix config, save config & exit"` - Repomap string `arg:"--repomap" help:"parse a repomap from gowebd"` - Clone bool `arg:"--clone" help:"go-clone things you are missing"` - Force bool `arg:"--force" help:"force redo go-clone"` - Erase bool `arg:"--erase" help:"erase"` - Private bool `arg:"--private" help:"list private repos in .config/forge/"` + List bool `arg:"--list" help:"list found repos"` + ListConf bool `arg:"--list-conf" help:"list your .config/forge/ configuration"` + Scan bool `arg:"--scan" help:"rescan your repos"` + ReadOnly bool `arg:"--readonly" help:"include read-only repos"` + Mine bool `arg:"--mine" help:"download private and writeable repos"` + Favorites bool `arg:"--favorites" help:"download repos marked as favorites"` + GitPull bool `arg:"--git-pull" help:"run 'git pull' on all your repos"` + Build bool `arg:"--build" default:"true" help:"also try to build it"` + Install bool `arg:"--install" help:"try to install every binary package"` + RedoGoMod bool `arg:"--RedoGoMod" help:"remake all the go.sum and go.mod files"` + DryRun bool `arg:"--dry-run" help:"show what would be run"` + Fix bool `arg:"--fix" help:"fix config, save config & exit"` + Clone bool `arg:"--clone" help:"go-clone things you are missing"` + Force bool `arg:"--force" help:"force redo go-clone"` + Erase bool `arg:"--erase" help:"erase"` + Private bool `arg:"--private" help:"list private repos in .config/forge/"` } func (args) Version() string { |
