-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
59 lines (59 loc) · 1.68 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
[core]
excludesfile = /Users/t0d0r/.gitignore_global
quotepath = false
whitespace = cr-at-eol
[user]
name = Todor Dragnev
email = todor@linuxfan.org
[color]
ui = auto
[alias]
bv = !git branch --color -v | cut -c1-100
cb = !git-cut-branch
ci = commit
df = diff --word-diff
dfw = diff --word-diff
diff-word = diff --word-diff
dw = diff --word-diff
fp = format-patch --stdout
grab = !git-grab
in = !git-incoming
incoming = !git-incoming
ll = log --pretty=oneline --abbrev-commit --max-count=15
out = !git-outgoing
outgoing = !git-outgoing
s = status -sb -uno --ignore-submodules=untracked
sa = status -sb --ignore-submodules=untracked
sh = !git-sh
st = status
thanks = !git-thanks
track = !git-track
wip = !git add -u && git commit -m ...
wipc = !date >> WIP && git add WIP && git commit -m ...
x = checkout HEAD
logline = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[commit]
template = ~/.stCommitMsg
[push]
default = simple
[pull]
rebase = false
[diff]
wordRegex = [^[:space:],]+|[,]+
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[github]
user = t0d0r
[url "git@github.com:"]
insteadOf = https://github.com/
[safe]
bareRepository = explicit