diff options
| author | Jeff Carr <[email protected]> | 2024-12-15 12:14:22 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-15 12:14:22 -0600 |
| commit | bab2506d348a634ad35f81a09675c9beed493d2b (patch) | |
| tree | 799b8bcadd628af1f856811512db31c1389c0dc2 /argv.go | |
| parent | b3bfa8915c1cc39bb36094829273d43621eb39ee (diff) | |
trying to fix clonev0.6.28
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ type args struct { Repo string `arg:"positional" help:"go import path"` AutoWork bool `arg:"--work" default:"false" help:"recreate the go.work file"` DryRun bool `arg:"--dry-run" help:"show what would be run"` - Recursive bool `arg:"--recursive" default:"false" help:"resursively clone all dependencies"` + Recursive bool `arg:"--recursive" default:"false" help:"recursively clone all dependencies"` Pull bool `arg:"--git-pull" default:"false" help:"run 'git pull'"` Build bool `arg:"--build" default:"true" help:"try to build it after clone"` Install bool `arg:"--install" default:"false" help:"try to install it after clone"` @@ -29,7 +29,7 @@ git clone go repositories Examples: go-clone go.wit.com/apps/go-clone # simply try to git clone this - go-clone --recursive go.wit.com/apps/go-clone # recursively clone all the dependancies + go-clone --recursive go.wit.com/apps/go-clone # recursively clone all the dependencies go-clone --auto-work go.wit.com/apps/go-clone # if you are using a go.work file, recreate the go.work file go-clone --go-reset # recreate every go.mod and go.sum file go-clone --git-pull # run 'git pull' in every repo |
