]> git.somenet.org - irc/irpg.git/blob - GITOLITE.txt
GITOLITE.txt
[irc/irpg.git] / GITOLITE.txt
1 REPO URLs:
2 https://git.somenet.org/irc/irpg.git (if public repo)
3 git remote set-url --push origin ssh://git@git.somenet.org:2/irc/irpg.git
4 git@git.somenet.org:irc/irpg.git
5
6 GITWEB (is public repo):
7 http://git.somenet.org/irc/irpg.git
8
9 GITOLITE instance admin (send ssh-keys to):
10 someone@somenet.org
11
12 --------------------------------------------------------------------------
13 RECOMMENDED CLIENT CONFIGURATION:
14
15    # Make Git enable rebasing instead of merging on all new tracked
16    # branches in *ALL* your repos. (get rid of merge-commits when pulling)
17    # Affects only *NEW* tracked branches.
18 git config --global branch.autosetuprebase always
19
20
21    # Make Git rebase the master branch instead of merging in *ALL* your
22    # repos. (get rid of merge-commits when pulling)
23    # Useful if you didnt have branch.autosetuprebase set before cloning
24    # and want all your repos to rebase.
25 git config --global branch.master.rebase true
26
27
28    # If you like colors consider adding these config options.
29 git config color.ui true
30 git config color.diff.whitespace red reverse
31
32
33   # WINDOWS USERS ONLY
34   # Make Git convert all the types of newline to "\n".
35   # Might break some stuff.
36 git config core.autocrlf input
37 --------------------------------------------------------------------------
38 AUTOGENERATED FILE.