-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
40 lines (39 loc) · 906 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 = Mark Tran
email = [email protected]
[alias]
browse = !hub browse
w = !hub browse
compare = !hub compare
a = "add"
br = "branch"
ci = "commit"
co = "checkout"
di = "diff"
hist = "log --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset (%Cgreen%cr%Creset) %s [%Cblue%an%Creset]' --graph --abbrev-commit --date=relative"
l = "log --name-status"
st = "status --branch --short"
sta = "stash"
[color]
ui = auto
[difftool]
prompt = false
[core]
quotepath = false
excludesfile = ~/.gitignore
pager = `test \"$TERM\" = \"dumb\" && echo cat || echo less`
[push]
default = current
[github]
user = marktran
[hub]
http-clone = true
[magit]
hideCampaign = true
[fetch]
prune = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true