Dotfiles/.gitconfig

33 lines
623 B
INI
Raw Normal View History

2024-05-13 22:18:48 +00:00
[user]
name = Snoweuph
email = snow+git@euph.email
[commit]
gpgSign = true
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[push]
autosetupremote = true
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[help]
autoCorrect = prompt
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[core]
editor = nvim
2024-06-02 17:30:27 +00:00
pager = /usr/share/git-core/contrib/diff-highlight | less
2024-07-20 09:38:45 +00:00
commentChar = ";"
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[diff]
colorMoved = default
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[fetch]
prune = true
prunetags = true
2024-07-26 16:03:29 +00:00
2024-05-13 22:18:48 +00:00
[alias]
adog = log --all --decorate --oneline --graph
2024-07-26 16:03:29 +00:00
fl = push --force-with-lease
prune-branches = "!git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs -r git branch -d"
show-last-commit = diff HEAD^
2024-06-02 17:30:27 +00:00
[interactive]
diffFilter = /usr/share/git-core/contrib/diff-highlight