-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
34 lines (34 loc) · 770 Bytes
/
.gitconfig
File metadata and controls
34 lines (34 loc) · 770 Bytes
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
[user]
name = matsub
email = matsub.rk@gmail.com
[core]
editor = vim
excludesfile = ~/.gitignore_global
[alias]
ch = checkout
st = stash
ss = status --short --branch
tree = log --graph --date=short --pretty='format:%C(yellow)%h%Creset %s %Cgreen(%an)%Creset %Cred%d%Creset'
[push]
default = current
[pull]
rebase = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[diff]
tool = vimdiff
indentHeuristic = true
[difftool]
prompt = false
[merge]
ff = no
tool = nvim
[mergetool]
keepBackup = false
[mergetool "nvim"]
cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[ghq]
root = ~/Develop/src