diff options
author | Silvino Silva <silvino@bk.ru> | 2019-01-11 22:11:08 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2019-01-11 22:11:08 +0000 |
commit | ac06799ee581fbb6a8ee715a02e2b0608f614f1b (patch) | |
tree | d3b1bb6bc25bc9ca5f2af7b5ce76450f36de617d | |
parent | 41c07516faf570f0a4b7f41d66aa68b824a41a63 (diff) | |
download | doc-ac06799ee581fbb6a8ee715a02e2b0608f614f1b.tar.gz |
dev git pager doc
-rw-r--r-- | dev/git/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
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 </pre> + <p>If you want to disable pager / paging you can set globally;</p> + + <pre> + $ git config --global core.pager cat + </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 +63,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 +78,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> |