From f7008f118b7af28a4d7754040d23090eff1b7e0c Mon Sep 17 00:00:00 2001 From: Druid520 Date: Fri, 14 Aug 2026 19:05:57 -0700 Subject: MOD: upd --- gitconfig | 123 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 gitconfig (limited to 'gitconfig') diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..1fd46b7 --- /dev/null +++ b/gitconfig @@ -0,0 +1,123 @@ +[user] + name = Druid520 + email = r.ustydruid520@proton.me + signingkey = BBA6732C9C740D27 + +[core] + helpAutocorrect = 1 + commitGraph = true + preloadIndex = true + fscache = true + whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol + sshCommand = ssh -o IdentitiesOnly=yes -i ~/.ssh/id_ed25519 + +[commit] + gpgsign = true + verbose = true + +[gpg] + program = gpg + format = openpgp + +[gpg "ssh"] + program = ssh-keygen + +[tag] + forceSignAnnotated = true + +[push] + default = simple + followTags = true + atomic = true + +[pull] + rebase = true + ff = only + +[merge] + conflictStyle = diff3 + tool = mg + +[diff] + algorithm = patience + colorMoved = default + wordRegex = . + +[color] + ui = auto + trueColor = yes + +[alias] + co = checkout + ci = commit + br = branch + st = status + lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit + tree = log --graph --pretty=format:'%Cred%h%Creset %s %Cgreen(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --all + unstage = reset HEAD -- + last = log -1 HEAD + cs = commit -S + ca = commit -a -S + cam = commit -a -S -m + amend = commit --amend -S --no-edit + fixup = commit --fixup + squash = commit --squash + ri = rebase -i + rc = rebase --continue + ra = rebase --abort + sts = stash save + stl = stash list + sta = stash apply + stp = stash pop + up = pull --rebase + pu = push + puf = push --force-with-lease + stat = log --stat + grep = grep -n + df = diff + dsf = diff --staged + +[credential] + helper = cache --timeout=3600 + +[credential "https://codeberg.org"] + username = Druid520 + +[http] + sslVerify = true + emptyAuth = true + +[pack] + threads = 0 + compression = 9 + +[init] + defaultBranch = trunk + +[rebase] + autoStash = true + updateBranches = true + +[status] + showUntrackedFiles = all + renameLimit = 0 + +[transfer] + fsckObjects = true + +[fetch] + prune = true + pruneTags = true + showForcedUpdates = true + +[advice] + statusHints = false + pushUpdateRejected = false + commitBeforeMerge = true + +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true + -- cgit 1.4.1