forked from f213/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
41 lines (41 loc) · 978 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
[user]
name = Fedor Borshev
email = [email protected]
[core]
autocrlf = input
editor = /usr/bin/vim
[alias]
l = log --oneline --graph --decorate
st = status
br = branch
c = checkout
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
conflictstyle = diff3
ff = false
[push]
default = current
#recurseSubmodules = check
[pager]
show = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight |less
diff = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight |less
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[credential]
helper = osxkeychain