-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
59 lines (50 loc) · 917 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
50
51
52
53
54
55
56
57
58
59
[user]
name = Taylor Briggs
email = taylor.briggs@gmail.com
[core]
editor = nvim
excludesfile = ~/.gitignore
quotepath = false
[color]
ui = true
pager = true
branch = auto
diff = auto
interactive = auto
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
tool = opendiff
[alias]
aa = add -A
co = checkout
cob = checkout -b
ci = commit -v
br = branch
df = diff
dfd = diff --diff-filter=D
dfm = diff --diff-filter=M
dfx = diff --diff-filter=X
f = fetch
lg = log -p
lof = log --
lol = log --graph --decorate --abbrev-commit
lola = log --graph --decorate --abbrev-commit --all
ls = ls-files
pho = push origin
plo = pull origin
rb = rebase
rbi = rebase -i
rpo = remote prune origin
st = status
w = whatchanged
[format]
pretty = oneline
[github]
user = TaylorBriggs
[push]
default = current
[commit]
gpgsign = true