mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 13:35:30 +00:00
feat: update .gitconfig
This commit is contained in:
@@ -1,21 +1,19 @@
|
|||||||
#git config --global rerere.enabled true This is Git's per-user configuration file.
|
#git config --global rerere.enabled true This is Git's per-user configuration file.
|
||||||
[user]
|
[user]
|
||||||
# Please adapt and uncomment the following lines:
|
# Please adapt and uncomment the following lines:
|
||||||
name = daniel
|
name = Daniel Bauer
|
||||||
email = github@dbauer.me
|
email = github@dbauer.me
|
||||||
[pack]
|
|
||||||
threads = 8
|
|
||||||
[merge]
|
|
||||||
tool = kdiff3
|
|
||||||
[core]
|
[core]
|
||||||
pager = diff-so-fancy | less --tabs=4 -RFX
|
pager = sh -c 'command -v diff-so-fancy >/dev/null && exec diff-so-fancy || less --tabs=4 -RX'
|
||||||
|
pager = less
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
attributesFile = /home/dbauer/.gitattributes
|
||||||
[alias]
|
[alias]
|
||||||
co = commit
|
co = commit
|
||||||
ch = checkout
|
ch = checkout
|
||||||
br = branch
|
br = branch
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = diff-so-fancy --patch
|
diffFilter = sh -c 'command -v diff-so-fancy >/dev/null && exec diff-so-fancy --patch || exec cat'
|
||||||
[color]
|
[color]
|
||||||
ui = true
|
ui = true
|
||||||
[color "diff-highlight"]
|
[color "diff-highlight"]
|
||||||
@@ -51,3 +49,9 @@
|
|||||||
path = ~/.gitconfig.local
|
path = ~/.gitconfig.local
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
|
[credential]
|
||||||
|
helper = store
|
||||||
|
[gpg]
|
||||||
|
program = /usr/bin/gpg
|
||||||
|
[include]
|
||||||
|
path = ~/.gitconfig.local
|
||||||
|
|||||||
Reference in New Issue
Block a user