37 lines
626 B
Text
37 lines
626 B
Text
|
[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
|