diff options
| author | Jeff Carr <[email protected]> | 2024-12-24 03:08:06 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-24 03:08:06 -0600 |
| commit | 3505a66d84b13d71d530ca74d1dbc85d1c6cfb2b (patch) | |
| tree | 0fbe33a32c3d50d80477c2f7358c6b85fbc2fea0 /argv.go | |
| parent | 778de10e871c5d25d9c746eb54f1752b7c124f6d (diff) | |
more argv cleanups
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -20,6 +20,7 @@ type DoCmd struct { GitReset bool `arg:"--git-reset" help:"run 'git reset --hard'"` Scan bool `arg:"--scan" help:"reload protobuf from .git/"` Force bool `arg:"--force" help:"force redo things"` + Dirty bool `arg:"--dirty" help:"update git CheckDirty()"` } type args struct { @@ -31,7 +32,6 @@ type args struct { DryRun bool `arg:"--dry-run" help:"show what would be run"` Fix bool `arg:"--fix" help:"fix config, save config & exit"` Delete string `arg:"--delete" help:"delete this repo"` - Dirty bool `arg:"--dirty" help:"git CheckDirty() on every repo"` User bool `arg:"--user" help:"git checkout user"` Devel bool `arg:"--devel" help:"git checkout devel"` Master bool `arg:"--master" help:"git checkout master"` @@ -59,5 +59,3 @@ Examples: # these options are intended for automation. You probably just want to use the GUI. ` } - -// forge --map lib/foo https://github.com/me/myfoo # map go.wit.com/lib/foo -> github.com/me/myfoo |
