fix(git): move config to .config

This commit is contained in:
$GIT_AUTHOR 2025-04-13 02:37:09 +02:00
parent 650c2b167e
commit 0f958de2a8
2 changed files with 11 additions and 4 deletions

View file

@ -1,8 +1,8 @@
[user] [user]
name = Jan-Ole Hübner name = $GIT_AUTHOR
email = jan-ole@huebner.pink email = $GIT_EMAIL
[core] [core]
excludesfile = /Users/janolehuebner/.gitignore_global excludesfile = $HOME/.config/git/.gitignore_global
autocrlf = input autocrlf = input
[color] [color]
diff = auto diff = auto
@ -18,6 +18,9 @@
default = simple default = simple
[pull] [pull]
ff = only ff = only
[core]
excludesfile = ~/.gitignore
autocrlf = input
[status] [status]
submoduleSummary = true submoduleSummary = true
[pager] [pager]
@ -25,5 +28,7 @@
[alias] [alias]
graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
chronograph = graph --date-order chronograph = graph --date-order
ff = merge --ff-only
amend = commit --amend --reuse-message=HEAD
[init] [init]
defaultBranch = main defaultBranch = main

View file

@ -0,0 +1,2 @@
GIT_AUTHOR=""
GIT_EMAIL=""