diff options
Diffstat (limited to 'dev')
-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> |