Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 320 Bytes

do-not-paginate.md

File metadata and controls

9 lines (6 loc) · 320 Bytes

Do not paginate git output

Git usees a pager program by default. This is set in git config. If you want to not use the pager for a one-off command, use --no-pager:

git --no--pager log

Hat tip to this post.