aboutsummaryrefslogtreecommitdiff
path: root/git/config
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-01-07 14:26:36 +0100
committerThomas Schmucker <ts@its1.de>2026-01-07 14:26:36 +0100
commit161874a65d34df05eb08fa3f63aa54d1bfa3a602 (patch)
tree4b55237ac01d4d16afb4f5c59e121f901937de25 /git/config
parentd8a1624e51d9af6b8185da90a2d7a79960f56f59 (diff)
downloaddotfiles-161874a65d34df05eb08fa3f63aa54d1bfa3a602.tar.gz
dotfiles-161874a65d34df05eb08fa3f63aa54d1bfa3a602.tar.bz2
dotfiles-161874a65d34df05eb08fa3f63aa54d1bfa3a602.zip
gitconfig funktioniert nun auch mit beruflichen Repos
Diffstat (limited to 'git/config')
-rw-r--r--git/config32
1 files changed, 32 insertions, 0 deletions
diff --git a/git/config b/git/config
new file mode 100644
index 0000000..778e580
--- /dev/null
+++ b/git/config
@@ -0,0 +1,32 @@
1[user]
2 email = ts@its1.de
3 name = Thomas Schmucker
4
5[includeIf "gitdir:~/**/up2parts-*/"]
6 path = ~/.config/git/config-up2parts
7
8[init]
9 defaultBranch = master
10
11[core]
12 pager = delta
13
14[interactive]
15 diffFilter = delta --color-only
16
17[delta]
18 light = false
19 navigate = true
20 side-by-side = true
21 line-numbers = true
22 tabs = 4
23
24[merge]
25 conflictstyle = diff3
26
27[diff]
28 colorMoved = default
29
30[alias]
31 lg = log --color --graph --pretty=format:'%C(magenta)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches
32