-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
40 lines (38 loc) · 858 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
[user]
name = Daniel
email = [email protected]
[color]
status = auto
branch = auto
diff = auto
[alias]
ci = commit -v
co = checkout
cob = checkout -b
st = status
sts = status -s
br = branch
df = diff
dfs = diff --staged
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
head = !git l -1
h = !git head
hp = "!source ~/.githelpers && show_git_head"
r = !git l -30
ra = !git r --all
l = "!source ~/.githelpers && pretty_git_log"
la = !git l --all
[core]
excludesfile = /Users/daniel/.gitignore_global
autocrlf = input
safecrlf = false
editor = /usr/local/bin/nvim
[push]
default = current
[credential]
helper = osxkeychain
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true