You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Or set `NO_COLOR` in your shell profile to disable colors permanently. See [no-color.org](https://no-color.org/) for details.
342
342
343
+
## Pager
344
+
345
+
Long output is piped through a pager, following git's precedence:
346
+
347
+
1.`GIT_PAGER` environment variable
348
+
2.`core.pager` git config
349
+
3.`PAGER` environment variable
350
+
4.`less -FRSX` as fallback
351
+
352
+
To disable paging for a single command:
353
+
354
+
```bash
355
+
git pkgs history --no-pager
356
+
```
357
+
358
+
To disable paging entirely, set your pager to `cat` or empty string:
359
+
360
+
```bash
361
+
git config core.pager cat
362
+
```
363
+
343
364
## Performance
344
365
345
366
Benchmarked on a MacBook Pro analyzing [octobox](https://github.com/octobox/octobox) (5191 commits, 8 years of history): init takes about 18 seconds at roughly 300 commits/sec, producing an 8.3 MB database. About half the commits (2531) had dependency changes.
0 commit comments