diff options
| author | Jeff Carr <[email protected]> | 2024-12-27 22:27:19 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-27 22:27:19 -0600 |
| commit | a957c22f8b63f390fc4289b93a84e921e5c3d64d (patch) | |
| tree | bd497bd3a6e409176cd1b6cc985ed996c7703c89 /argv.go | |
| parent | 8b3be0ab42e68ab0616ff6e461dbe8b582b12d21 (diff) | |
start work on an applyPatch()
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -28,10 +28,11 @@ type args struct { Delete string `arg:"--delete" help:"delete this repo"` URL string `arg:"--connect" help:"gowebd url"` Register string `arg:"--register" help:"register your git URL (foo.com/mystuff) or (github.com/foo/bar)"` - 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"` - PatchSet string `arg:"--patchset" help:"make patch set"` + 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"` + PatchSet string `arg:"--patchset" help:"make patch set"` + Apply string `arg:"--apply" help:"apply a patch set"` } func (args) Version() string { |
