-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
49 lines (49 loc) · 1016 Bytes
/
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
[user]
name = Simon Fröhler
email = [email protected]
signingkey = EAE6F2C3F3167592
[core]
excludesfile = ~/.gitignore_global
editor = atom --wait
autocrlf = input
[credential]
helper = osxkeychain
[apply]
whitespace = warn
[color]
diff = auto
status = auto
branch = auto
ui = auto
[help]
autocorrect = 1
[status]
submodule = 1
[push]
# Only push branches that have been set up to track a remote branch.
default = current
[alias]
aa = add --all
ap = add --patch
ca = commit --amend
ci = commit -v
co = checkout
delete-branch = !sh -c 'git push origin :refs/heads/$1 && git branch -D $1' -
merge-branch = !git checkout master && git merge @{-1}
pf = push --force-with-lease
pr = pull-request
st = status
[fetch]
prune = true
[commit]
template = ~/.gitmessage
gpgsign = true
[merge]
ff = only
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[diff]
indentHeuristic = true