81 lines
2 KiB
Cheetah
81 lines
2 KiB
Cheetah
[core]
|
|
excludesfile = /home/{{- .chezmoi.username -}}/.config/git/ignore
|
|
|
|
[user]
|
|
name = {{ .name }}
|
|
email = {{ .email }}
|
|
signingkey = 7AD9DB430EE2B3C1D86BF3243CD66E04B8072F3E
|
|
|
|
[commit]
|
|
gpgSign = true
|
|
|
|
[tab]
|
|
gpgSign = true
|
|
|
|
[credential]
|
|
helper = cache
|
|
|
|
[submodule]
|
|
recurse = true
|
|
|
|
[pull]
|
|
rebase = true
|
|
|
|
[init]
|
|
defaultBranch = main
|
|
|
|
[branch]
|
|
autosetuprebase = always
|
|
|
|
[alias]
|
|
ignore = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi"
|
|
root = rev-parse --show-toplevel
|
|
adog = log --all --decorate --oneline --graph
|
|
lg = log --graph --abbrev-commit --decorate --format=format:'%C(bold magenta)%h%C(reset) ->%C(bold yellow)%d%C(reset) %C(white)%s%C(reset) %C(green)(%ar)%C(reset) %C(dim white)- %an%C(reset)' --all
|
|
last = log -1 HEAD --stat
|
|
ll = log --oneline
|
|
st = status -sb
|
|
s = status -s
|
|
dd = !git diff | delta
|
|
sd = !git show | delta
|
|
co = checkout
|
|
cob = checkout -b
|
|
br = branch --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(contents:subject) %(color:green)(%(committerdate:relative)) [%(authorname)]' --sort=-committerdate
|
|
undo = reset HEAD~1 --mixed
|
|
wip = !git add -A && git commit -m \"wip: $(date +\"%Y.%m.%d %H:%M:%S\")\"
|
|
cmt = !git commit -m \"time: $(date +\"%Y.%m.%d %H:%M:%S\")\"
|
|
save = !git add -A && git commit -m \"time: $(date +\"%Y.%m.%d %H:%M:%S\")\"
|
|
la = "!git config -l | grep alias | cut -c 7-"
|
|
gl = config --global -l
|
|
rb5 = rebase -i HEAD~5
|
|
frbi = "!f() { git rebase -i $(git log --pretty=oneline --color=always --abbrev-commit | fzf --ansi | cut -d ' ' -f1)^ ; }; f"
|
|
|
|
[filter "lfs"]
|
|
clean = git-lfs clean -- %f
|
|
smudge = git-lfs smudge -- %f
|
|
process = git-lfs filter-process
|
|
required = true
|
|
|
|
[help]
|
|
autocorrect = 20
|
|
|
|
[delta]
|
|
line-numbers = true
|
|
navigate = true # use n and N to move between diff sections
|
|
theme = catppuccin
|
|
; hunk-header-decoration-style = none
|
|
diff-so-fancy = true
|
|
hunk-header-style = bold
|
|
|
|
[core]
|
|
pager = delta
|
|
|
|
[interactive]
|
|
diffFilter = delta --color-only
|
|
|
|
[merge]
|
|
conflictstyle = diff3
|
|
|
|
[diff]
|
|
colorMoved = default
|
|
|