]> git.somenet.org - pub/jan/inetsec2.git/blob - GITOLITE.txt
GITOLITE.txt
[pub/jan/inetsec2.git] / GITOLITE.txt
1 REPO:
2 git clone ssh://git@git.somenet.org:666/priv/jan/inetsec2
3
4 GITWEB:
5 http://git.somenet.org/?p=priv/jan/inetsec2.git;a=summary
6
7 GITOLITE ROOT ADMIN (send ssh-keys to):
8 someone@somenet.org
9
10 --------------------------------------------------------------------------
11 RECOMMENDED CLIENT CONFIGURATION:
12 git config --global branch.autosetuprebase always
13   # Make Git enable rebasing instead of merging on all new tracked
14   # branches in *ALL* your repos. (get rid of merge-commits when pulling)
15   # Affects only *NEW* tracked branches.
16
17
18 git config --global branch.master.rebase true
19   # Make Git rebase the master branch instead of merging in *ALL* your
20   # repos. (get rid of merge-commits when pulling)
21   # Useful if you didnt have branch.autosetuprebase set before cloning
22   # and want all your repos to rebase.
23
24
25 git config color.ui true
26 git config color.diff.whitespace red reverse
27   # If you like colors consider adding these config options.
28
29
30 git config core.autocrlf input
31   # Make Git convert all the types of newline to "\n". This is especially
32   # useful, if windows and *nix users are working on the same fileset.
33   # Might break some stuff.
34 --------------------------------------------------------------------------
35 AUTOGENERATED FILE.