diff options
| author | Jeff Carr <[email protected]> | 2025-09-03 19:39:02 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-03 19:39:02 -0500 |
| commit | b847d9aa6ca4ee1b60687643cd04c9e6f46ad310 (patch) | |
| tree | 043c553775f196940e0ba76bcbe32198b9a9bd02 /argv.go | |
| parent | aea7f168911df8a91357270a0eab84c4b5ff1174 (diff) | |
remove old code
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -23,8 +23,8 @@ type args struct { Dirty *DirtyCmd `arg:"subcommand:dirty" help:"show dirty git repos"` GitFetch *FindCmd `arg:"subcommand:fetch" help:"run 'git fetch master'"` List *FindCmd `arg:"subcommand:list" help:"print a table of the current repos"` - Normal *EmptyCmd `arg:"subcommand:normal" help:"set every repo to the default state for software development"` Merge *MergeCmd `arg:"subcommand:merge" help:"merge branches"` + Normal *EmptyCmd `arg:"subcommand:normal" help:"set every repo to the default state for software development"` Patch *PatchCmd `arg:"subcommand:patch" help:"make patchsets"` Pull *PullCmd `arg:"subcommand:pull" help:"run 'git pull'"` URL string `arg:"--connect" help:"forge url"` @@ -76,7 +76,6 @@ type PullCmd struct { Check *EmptyCmd `arg:"subcommand:check" help:"check repo versions"` Dirty *EmptyCmd `arg:"subcommand:dirty" help:"only check dirty repos"` Patches *EmptyCmd `arg:"subcommand:patches" help:"only check repos with patches"` - Sync *SyncCmd `arg:"subcommand:sync" help:"sync repos with upstream"` } type ConfigAddCmd struct { @@ -118,11 +117,6 @@ type MergeCmd struct { Publish *EmptyCmd `arg:"subcommand:publish" help:"increment versions and publish master branch"` } -type SyncCmd struct { - Clean *EmptyCmd `arg:"subcommand:clean" help:"sync everything to upstream master"` - User *EmptyCmd `arg:"subcommand:user" help:"sync everything to user"` -} - type DirtyCmd struct { } @@ -146,7 +140,7 @@ func (a args) Description() string { forge -- a tool to manage lots of git repos. forge includes a GUI and TUI. forge only executes the 'git' command. Everything it does, you can run by hand with 'git'. - ` +` } func (args) doBashHelpDebug() { |
