-
Notifications
You must be signed in to change notification settings - Fork 0
/
GITOLITE.txt
41 lines (30 loc) · 1.15 KB
/
GITOLITE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
REPO URLs:
https://git.somenet.org/pub/jan/mattermost-privileged.git (if public repo)
git remote set-url --push origin ssh://[email protected]:2/pub/jan/mattermost-privileged.git
[email protected]:pub/jan/mattermost-privileged.git
GITWEB (if public repo):
http://git.somenet.org/pub/jan/mattermost-privileged.git
GITOLITE instance admin (send ssh-keys to):
RECOMMENDED CONFIGURATION
----------------------------------------------------------------------
# Show forgotten whitespaces.
git config --global color.ui true
git config --global color.diff.whitespace red reverse
# remove removed branches + tags.
git config --global fetch.prune true
git config --global fetch.pruneTags true
################
# Use rebasing #
################
git config --global branch.autosetuprebase always
git config --global branch.master.rebase true
git config --global rebase.stat true
#################
# WINDOWS USERS #
#################
# Make Git convert all the types of newline to "\n".
# Might break some stuff.
git config --global core.autocrlf true
----------------------------------------------------------------------
AUTOGENERATED FILE.