This commit is contained in:
simopunkc 2024-04-02 17:51:58 +00:00 committed by GitHub
commit 8ad80eb137
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -114,8 +114,8 @@ Options:
Examples: Examples:
$ git-stats # Default behavior (stats in the last year) $ git-stats # Default behavior (stats in the last year)
$ git-stats -l # Light mode $ git-stats -l # Light mode
$ git-stats -s '1 January 2012' # All the commits from 1 January 2012 to now $ git-stats -s '1 January, 2012' # All the commits from 1 January 2012 to now
$ git-stats -s '1 January 2012' -u '31 December 2012' # All the commits from 2012 $ git-stats -s '1 January, 2012' -u '31 December, 2012' # All the commits from 2012
Your commit history is kept in ~/.git-stats by default. You can create Your commit history is kept in ~/.git-stats by default. You can create
~/.git-stats-config.js to specify different defaults. ~/.git-stats-config.js to specify different defaults.

View File

@ -84,8 +84,8 @@ new Tilda(`${__dirname}/../package.json`, {
, examples: [ , examples: [
"git-stats # Default behavior (stats in the last year)" "git-stats # Default behavior (stats in the last year)"
, "git-stats -l # Light mode" , "git-stats -l # Light mode"
, "git-stats -s '1 January 2012' # All the commits from 1 January 2012 to now" , "git-stats -s '1 January, 2012' # All the commits from 1 January 2012 to now"
, "git-stats -s '1 January 2012' -u '31 December 2012' # All the commits from 2012" , "git-stats -s '1 January, 2012' -u '31 December, 2012' # All the commits from 2012"
] ]
, notes: "Your commit history is kept in ~/.git-stats by default. You can create ~/.git-stats-config.js to specify different defaults." , notes: "Your commit history is kept in ~/.git-stats by default. You can create ~/.git-stats-config.js to specify different defaults."
}).main(action => { }).main(action => {