-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_gitconfig
More file actions
29 lines (29 loc) · 723 Bytes
/
_gitconfig
File metadata and controls
29 lines (29 loc) · 723 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
[user]
name = Yann Malet
email = yann.malet@gmail.com
[color]
ui = auto
status = auto
diff = auto
branch = auto
interactive = auto
[alias]
st = status
co = checkout
ci = commit
ll = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
[diff]
tool = vimdiff
[merge]
tool = vimdiff
[push]
default = matching
[core]
editor = vim
excludesfile = "~/.gitignore"
[hub]
autoUpdate = never
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true