diff options
author | Silvino Silva <silvino@bk.ru> | 2019-03-20 20:14:34 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2019-03-20 20:15:09 +0000 |
commit | d765ed480f6153b35fdb93d8bea74a3ce9a14d93 (patch) | |
tree | 6a6fab9cdc747d97b4dbbea8d41620f43df98ff7 /dev/git/install.html | |
parent | fa304188694b900513ea4a4e249c40fb360fc6e5 (diff) | |
parent | 675126cad1cde96a6fcf63efdc1bd8b6f6ba22ad (diff) | |
download | doc-d765ed480f6153b35fdb93d8bea74a3ce9a14d93.tar.gz |
merge git from master into develop
Diffstat (limited to 'dev/git/install.html')
-rw-r--r-- | dev/git/install.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev/git/install.html b/dev/git/install.html new file mode 100644 index 0000000..6a42abd --- /dev/null +++ b/dev/git/install.html @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html dir="ltr" lang="en"> + <head> + <meta charset='utf-8'> + <title>1. Install git</title> +</head> +<body> + + <a href="index.html">Git Index</a> + + <h1>1. Install Git</h1> + + <p>Install git;</p> + + <pre> + $ sudo prt-get depinst git + </pre> + + <p>First configure your global identity, configuration + file resides on ~/.gitconfig ;</p> + + <pre> + $ git config --global user.name "User Name" + $ 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 core.pager "less -F -X" + </pre> + + <p>Use <a href="../../tools/vim.html#vimdiff">vimdiff</a> as diff and merge tool;</p> + + <pre> + $ git config --global diff.tool vimdiff + $ git config --global merge.tool vimdiff + $ git config --global difftool.prompt false + </pre> + + <a href="index.html">Git Index</a> + <p>This is part of the Hive System Documentation. + Copyright (C) 2019 + Hive Team. + See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> + for copying conditions.</p> +</body> +</html> |