See your git log for all repositories within a directory.
npx c-commits $dir
option | description | default |
---|---|---|
$dir | The root directory to start scanning from | . |
--since, -s | Commits made since date same syntax as git log --since | 1 week ago |
--hideEmpty, -h | Hide repositories with no commits since the given date | false |
env vars | description |
---|---|
C_COMMITS_ROOT | will be used as the default for $dir if not supplied |
C_COMMITS_SINCE | will be used as the default for --since if not supplied |
C_COMMITS_HIDE | will be used as the default for --hideEmpty if not supplied, "true" to enable, anything else to acts as false |
e.g.
npx c-commits ~/projects --since="1 month ago" -h