diff options
| author | Jeff Carr <[email protected]> | 2025-07-01 19:03:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-07-01 19:03:55 -0500 |
| commit | 4fc9d038ca3e3caebd711d95fdcd6012d3552ba2 (patch) | |
| tree | 2073b7a781384abb37edbbef8c263e12da32443c /doPull.go | |
| parent | 1ea9bdf841cb4eae4cd7b1d96288852e799fbeb2 (diff) | |
working out testing
Diffstat (limited to 'doPull.go')
| -rw-r--r-- | doPull.go | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -48,6 +48,18 @@ func doGitPullNew() error { return fmt.Errorf("not really 'fetch pull'") } + if argv.GitPull.Dirty != nil { + found := findDirty() + me.forge.PrintHumanTableFull(found) + return nil + } + + if argv.GitPull.Patches != nil { + found := findReposWithPatches() + me.forge.PrintHumanTableFull(found) + return nil + } + if argv.GitPull.Test != nil { log.Info("list repo's with updates here") found := doFind() |
