-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
38 lines (38 loc) · 1.09 KB
/
gitconfig
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
[usae]
name = veloce
[user]
name = Vincent Velociter
email = vincent.velociter@gmail.com
[color]
ui = true
[color "status"]
added = green
changed = yellow
untracked = red
[core]
editor = nvim -u $HOME/.dotfiles/nvim/gitcommit.vim -X
autocrlf = input
excludesfile = ~/.dotfiles/gitignore
filemode = true
[push]
default = tracking
[alias]
co = checkout
br = branch
ci = commit
st = status
subpull = !"git submodule foreach git checkout master && git submodule foreach git pull"
submerge = !"git submodule update --merge"
subupdate = !"git submodule sync && git submodule update --init"
subcheckout = !"git submodule foreach git checkout master"
subreset = !"git submodule foreach --recursive git checkout -- . && git submodule foreach --recursive git clean -f"
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
[merge]
tool = vimdiff
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[pull]
ff = only