2 git clone ssh://git@git.somenet.org:2/irc/bugbot
5 http://git.somenet.org/?p=irc/bugbot.git;a=summary
7 GITOLITE ROOT ADMIN (send ssh-keys to):
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.
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.
25 git config color.ui true
26 git config color.diff.whitespace red reverse
27 # If you like colors consider adding these config options.
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 --------------------------------------------------------------------------