1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-03-06 15:03:41 +00:00
dotfiles/git/.gitconfig

27 lines
815 B
INI
Raw Permalink Normal View History

[user]
2013-06-20 18:19:23 +02:00
name = J. Fernando Sánchez
email = balkian@gmail.com
[diff]
tool = vimdiff
[alias]
d = difftool
2015-03-15 23:29:01 +01:00
[include]
path = ~/.gitconfig_secret
[color]
2015-02-23 07:07:14 +01:00
ui = true
[alias]
lg1 = log --graph --all --format=format:'%C(yellow)%h%C(reset) - %C(green)(%ad)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
lg2 = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit
lg = !"git lg1"
[core]
2015-09-18 02:14:17 +02:00
excludesfile = ~/.gitignore_global
2017-01-14 00:13:09 +01:00
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
2020-12-28 12:54:24 +01:00
[pull]
rebase = false