]> git.somenet.org - irc/irpg.git/blob - GITOLITE.txt
2cb4e2da57d0eaf55ed4487dbf3b23da5d0cf6bf
[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 (if public repo):
7 http://git.somenet.org/irc/irpg.git
8
9
10 GITOLITE instance admin (send ssh-keys to):
11 someone@somenet.org
12
13
14 RECOMMENDED CLIENT CONFIGURATION
15 --------------------------------------------------------------------------
16     # Show forgotten whitespaces.
17 git config color.ui true
18 git config color.diff.whitespace red reverse
19
20
21         # remove removed branches + tags.
22 git config --global fetch.prune true
23 git config --global fetch.pruneTags true
24
25
26
27 ################
28 # Use rebasing #
29 ################
30 git config --global branch.autosetuprebase always
31 git config --global rebase.stat true
32 git config --global branch.master.rebase true
33
34
35
36 #################
37 # WINDOWS USERS #
38 #################
39     # Make Git convert all the types of newline to "\n".
40     # Might break some stuff.
41 git config core.autocrlf input
42 --------------------------------------------------------------------------
43 AUTOGENERATED FILE.