diff options
| -rw-r--r-- | argv.go | 1 | ||||
| -rw-r--r-- | doShow.go | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -55,6 +55,7 @@ type testCmd string type ShowCmd struct { Dirty *EmptyCmd `arg:"subcommand:dirty" help:"show dirty git repos"` + Mtime *EmptyCmd `arg:"subcommand:mtime" help:"show mtime changes"` Repo *RepoCmd `arg:"subcommand:repos" help:"print a table of the current repos"` Tag *TagCmd `arg:"subcommand:tag" help:"show git tags"` } @@ -18,6 +18,11 @@ func doShow() (string, error) { return "tags shown", nil } + if argv.Show.Mtime != nil { + s, err := me.forge.Repos.ScanAllMtimesVerbose() + return s, err + } + found := findRepos() if showUrls() { found.SortNamespace() |
