configfiles/git/.gitconfig

27 lines
663 B
INI
Raw Permalink Normal View History

2015-10-08 11:41:59 +02:00
[user]
email = madmaurice@zom.bi
2018-09-08 02:02:24 +02:00
name = MadMaurice
2015-10-08 11:41:59 +02:00
[push]
default = current
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
lga = lg --all
2015-10-08 11:45:01 +02:00
s = status -sb
2015-10-08 11:43:46 +02:00
a = add
c = commit
co = checkout
ca = commit --amend
2015-10-08 11:43:46 +02:00
ps = push
pl = pull
2020-12-26 12:50:49 +01:00
plf = pull --ff-only
2015-10-31 20:52:55 +01:00
uncommit = reset --soft HEAD~
2015-11-26 18:00:03 +01:00
deleted = log --diff-filter=D --summary
2018-09-19 19:11:08 +02:00
find = ! sh -c 'git ls-files $2 | grep $1' -
2015-10-08 11:43:46 +02:00
[color]
ui = auto
2018-06-21 00:21:40 +02:00
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f