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