about summary refs log tree commit diff stats
path: root/dev
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2019-02-07 13:50:02 +0000
committerSilvino Silva <silvino@bk.ru>2019-02-07 13:50:02 +0000
commitbdfc05251acbb99c6bbcd4ff794a01dde2f8dc3b (patch)
tree93b7fbde96409fd6e164380bb10e77f4a7400eb6 /dev
parent57a604e35930f4f58aabe93c8c51de5ee378813c (diff)
parent390a4d2fbef2d8c814d7b2fb00cc0c4db3964c55 (diff)
downloaddoc-bdfc05251acbb99c6bbcd4ff794a01dde2f8dc3b.tar.gz
release 0.4.1
Diffstat (limited to 'dev')
-rw-r--r--dev/git/index.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev/git/index.html b/dev/git/index.html
index b41f7a1..4e61822 100644
--- a/dev/git/index.html
+++ b/dev/git/index.html
@@ -17,6 +17,24 @@
        $ git config --global user.email user@devbox
     </pre>
 
+    <p>If you want to disable pager / paging you can set globally;</p>
+
+    <pre>
+    $ git config --global core.pager cat
+    </pre>
+
+    <p>Paging based on output size with less;</p>
+
+    <pre>
+    git config --global --replace-all core.pager "less -F -X"
+    </pre>
+
+    <p>Example to disable for just one subcommand and local repository;</p>
+
+    <pre>
+    $ git config pager.diff cat
+    </pre>
+
     <p>Assumptions of this document;</p>
 
     <ul>
@@ -51,6 +69,12 @@
 
     <p>Main Branches;</p>
 
+    <pre>
+    ___A___________AB_____ Master
+        \___B_____/ \____  Develop
+
+    </pre>
+
     <dl>
         <dt>master</dt>
         <dd>Current official stable release history.</dd>
@@ -60,6 +84,15 @@
 
     <p>Add-on Branches;</p>
 
+    <pre>
+    _A_________________AFR___________________AFRHR Master
+     \            _AFR_/   \        _AFRHR_/\      Release
+      \          /          \_AFRH_/         \     Hotfix
+       \________/_____________________________\__  Develop
+         \_F_/     \_F1_/                          Feature
+
+    </pre>
+
     <dl>
         <dt>feature (f-)</dt>
         <dd>New features, improvement proposal, tests, etc...</dd>