From ac06799ee581fbb6a8ee715a02e2b0608f614f1b Mon Sep 17 00:00:00 2001 From: Silvino Silva Date: Fri, 11 Jan 2019 22:11:08 +0000 Subject: dev git pager doc --- dev/git/index.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev/git/index.html b/dev/git/index.html index b41f7a1..41a5a22 100644 --- a/dev/git/index.html +++ b/dev/git/index.html @@ -17,6 +17,18 @@ $ git config --global user.email user@devbox +

If you want to disable pager / paging you can set globally;

+ +
+    $ git config --global core.pager cat
+    
+ +

Example to disable for just one subcommand and local repository;

+ +
+    $ git config pager.diff cat
+    
+

Assumptions of this document;