-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
52 lines (42 loc) · 1 KB
/
.gitconfig
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
42
43
44
45
46
47
48
49
50
51
52
[user]
name = Jens Comiotto-Mayer
email = [email protected]
[core]
whitespace = trailing-space,space-before-tab
autocrlf = input
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
warnAmbiguousRefs = false
excludesfile = ~/.gitignore_global
[color]
ui = true
diff = auto
status = auto
branch = auto
[log]
decorate = true
[branch]
autosetuprebase = always
[diff]
renames = true
[push]
default = tracking
[pull]
ff = only
[alias]
changes=diff --name-status -r
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
cues = blame
elog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
starecopu = "!sh -c 'git stash && git pull --rebase && git stash pop && git commit -am \"$0\" && git push'"
[receive]
denyNonFastForwards = true
[rerere]
enabled = 1