-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
34 lines (34 loc) · 835 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
[user]
name = pierzakp
email = [email protected]
[core]
excludesfile = /Users/pierzakp/.gitignore
editor = vim
[merge]
conflictstyle = diff3
[diff]
patience = true
[alias]
ci = commit
cm = commit -m
cmn = commit -n -m
cma = commit --amend
s = status -sb
st = status
ls = log -n 1 --format=%H
aa = add --all
d = diff
dnp = !git --no-pager diff
ds = diff --staged
dsnp = !git --no-pager diff --staged
gl = log --oneline --decorate --graph --all
kraken = !"/Applications/GitKraken.app/Contents/MacOS/GitKraken -p $(pwd)"
[color]
ui = auto
[hub]
protocol = https
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process