mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-05 03:41:30 +01:00
37 lines
541 B
Plaintext
37 lines
541 B
Plaintext
# vi:syntax=gitconfig
|
|
[core]
|
|
excludesfile = ~/.gitignore
|
|
|
|
#[init]
|
|
# templatedir = ~/.git_template
|
|
|
|
[pull]
|
|
ff = only
|
|
rebase = true
|
|
|
|
[merge]
|
|
ff = only
|
|
tool = vimdiff2
|
|
|
|
[mergetool]
|
|
keepBackup = false
|
|
|
|
[diff]
|
|
tool = vimdiff2
|
|
|
|
[difftool]
|
|
prompt=true
|
|
[rebase]
|
|
autostash = true
|
|
autosquash = true
|
|
squash = true
|
|
|
|
[log]
|
|
abbrevcommit = true
|
|
|
|
[format]
|
|
#pretty = format:%C(yellow)commit %h%Cred%d %Creset%nAuthor: %Cblue%>(12)%an%n%CgreenDate: %ar%Creset%n%n%B
|
|
|
|
[alias]
|
|
showtool = "!showci () { rev=${1:-HEAD}; git difftool $rev~1 $rev; }; showci $1"
|