Added new gitconfigs
This commit is contained in:
parent
e24e3446d9
commit
159b6db365
2 changed files with 58 additions and 16 deletions
|
@ -1,11 +1,3 @@
|
|||
[user]
|
||||
name = Tobias Schmidl
|
||||
email = T.Schmidl@erhardt-leimer.com
|
||||
signingkey = 0xa1554441
|
||||
[gui]
|
||||
fontdiff = -family \"Source Code Pro\" -size 8 -weight normal -slant roman -underline 0 -overstrike 0
|
||||
fontui = -family \"DejaVu Sans\" -size 9 -weight normal -slant roman -underline 0 -overstrike 0
|
||||
spellingdictionary = en
|
||||
[alias]
|
||||
st = status
|
||||
ci = commit
|
||||
|
@ -13,18 +5,32 @@
|
|||
wdi = diff --color-words
|
||||
co = checkout
|
||||
up = fetch --all
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
[core]
|
||||
excludesfile = /home/schtobia/.gitignore
|
||||
[push]
|
||||
default = upstream
|
||||
[branch "master"]
|
||||
rebase = true
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[diff]
|
||||
renames = copies
|
||||
|
||||
[gui]
|
||||
fontdiff = -family \"Source Code Pro\" -size 8 -weight normal -slant roman -underline 0 -overstrike 0
|
||||
fontui = -family \"DejaVu Sans\" -size 9 -weight normal -slant roman -underline 0 -overstrike 0
|
||||
spellingdictionary = en
|
||||
|
||||
# recognize file copies
|
||||
[diff]
|
||||
renames = copies
|
||||
|
||||
[push]
|
||||
default = upstream
|
||||
|
||||
[branch "master"]
|
||||
rebase = true
|
||||
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[http]
|
||||
sslCAPath = /etc/ssl/certs
|
||||
sslVerify = true
|
||||
|
36
gitconfig.server
Normal file
36
gitconfig.server
Normal file
|
@ -0,0 +1,36 @@
|
|||
[http]
|
||||
sslCAPath = /etc/ssl/certs # System CA path
|
||||
sslVerify = true # make sure that https requests get verified
|
||||
|
||||
# some system aliases
|
||||
[alias]
|
||||
st = status
|
||||
ci = commit
|
||||
di = diff
|
||||
wdi = diff --color-words
|
||||
co = checkout
|
||||
up = fetch --all
|
||||
|
||||
# default push destination
|
||||
[push]
|
||||
default = upstream
|
||||
|
||||
# try rebase whenever possible
|
||||
[branch "master"]
|
||||
rebase = true
|
||||
|
||||
# try rebase whenever possible
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
# recognize file copies
|
||||
[diff]
|
||||
renames = copies
|
||||
|
||||
# allow writing by all users in the same group
|
||||
[core]
|
||||
sharedRepository = group
|
||||
|
||||
# deny ununsual write options
|
||||
[receive]
|
||||
denyNonFastForwards = true
|
Loading…
Reference in a new issue