dotfiles/config/.gitconfig

19 lines
570 B
INI
Raw Normal View History

[user]
email = info@rickvanlieshout.com
name = Mastermindzh
[alias]
tree = log --graph --decorate --pretty=format:'%ar [%h] %an <%ae> - %s'
graph = log --graph --pretty=format:'%C(bold)%h%Creset%C(magenta)%d%Creset %s %C(yellow)<%an> %C(cyan)(%cr)%Creset' --abbrev-commit --date=relative
stats = !git graph --stat
pushall = !git remote | xargs -L1 git push --all
diffname = !git diff --name-only
2018-08-29 09:10:08 +02:00
undocommit = reset --soft HEAD~1
2019-08-14 08:44:11 +02:00
log-small = log --oneline --no-merges
2018-10-22 10:49:21 +02:00
[core]
autocrlf = input
editor = nano
[pull]
rebase = false
[init]
defaultBranch = master