Use
git config --global core.pager cat
to get rid of a pager for all commands for all repositories.
You can also disable paging for single Git subcommands by using pager.<cmd>
setting instead of core.pager
, and you can change your settings per Git repository (omit --global
).
See man git-config
and search for pager.<cmd>
for details.