-
+
+ You can set the variables _GIT_SINCE and/or _GIT_UNTIL before running git-quick-stats to limit the git log.
+ These work similar to git's built-in --since and --until log options.
+
+ export _GIT_SINCE="2017-01-20"
+ export _GIT_UNTIL="2017-01-22"
+
+ + Once set, run git quick-stats as normal. Note that this affects all stats that parse the git log history until unset. +
++ You can set variable _GIT_LIMIT for limited output. It will affect the "changelogs" and "branch tree" options. +
+
+
+ export _GIT_LIMIT=20
+
+
+ You can exclude a directory from the stats by using pathspec +
+
+ export _GIT_PATHSPEC=':!directory'
+
+ + You can also exclude files from the stats. Note that it works with any alphanumeric, glob, or regex that git respects. +
+
+
+ export _GIT_PATHSPEC=':!package-lock.json'
+
+
+ You can change to the legacy color scheme by toggling the variable _MENU_THEME between default and legacy +
+
+ export _MENU_THEME=legacy
+
+