-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
73 lines (70 loc) · 1.82 KB
/
.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[user]
name = dot
email = [email protected]
# signingkey = F92C0621AD54151C
signingkey = 97FB22AE2F9AD62F10A2E811F92C0621AD54151C
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
quotepath = false
precomposeunicode = true
[color]
ui = auto
[push]
default = simple
[rebase]
stat = true
[pull]
rebase = true
[merge]
ff = false
conflictstyle = diff3
[branch]
autosetuprebase = always
[alias]
ci = commit
cim = commit -m
st = status --ignore-submodules=dirty
co = checkout
url = config --get remote.origin.url
pr = pull --rebase
l = log --stat --decorate
lp = log -p
ls = log --stat
lg= log --decorate --oneline --graph
wd= diff --word-diff
b = branch -v -v
bm = branch --merged
bnm = branch --no-merged
d = diff --patience
ds = diff --staged
stash-all = stash save --include-untracked
prune=pull --prune
glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
[credential]
helper = osxkeychain
[commit]
# gpgSign = true
[pager]
log = `brew --prefix git`/share/git-core/contrib/diff-highlight/diff-highlight | less
show = `brew --prefix git`/share/git-core/contrib/diff-highlight/diff-highlight | less
diff = `brew --prefix git`/share/git-core/contrib/diff-highlight/diff-highlight | less
branch = cat
[url "[email protected]:"]
pushinsteadof = "https://github.com/"
insteadOf = "https://github.com/"
[ghq]
root = ~/projects
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[diff]
compactionHeuristic = true
[gpg]
program = /usr/local/bin/gpg
[pr-release]
token = d3462093a177cfc96a06f6783257ef3eb2f08c46
[interactive]
diffFilter = diff-highlight