]> git.somenet.org - pub/astra/parallel.git/blob - GITOLITE.txt
GITOLITE.txt
[pub/astra/parallel.git] / GITOLITE.txt
1 REPO URLs:
2 https://git.somenet.org/pub/astra/parallel.git (if public repo)
3 git remote set-url --push origin ssh://git@git.somenet.org:2/pub/astra/parallel.git
4 git@git.somenet.org:pub/astra/parallel.git
5
6 GITWEB (is public repo):
7 http://git.somenet.org/pub/astra/parallel.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 ################
21 # Use rebasing #
22 ################
23 git config --global branch.autosetuprebase always
24 git config --global rebase.autoStash true
25 git config --global rebase.stat true
26
27     # Make git rebase the master branch instead of merging in *ALL* your
28     # repos. (get rid of merge-commits when pulling)
29     # Useful if you didnt have branch.autosetuprebase set before cloning
30     # and want all your repos to rebase.
31 git config --global branch.master.rebase true
32
33
34 #################
35 # WINDOWS USERS #
36 #################
37     # Make Git convert all the types of newline to "\n".
38     # Might break some stuff.
39 git config core.autocrlf input
40 --------------------------------------------------------------------------
41 AUTOGENERATED FILE.