this repo has no description
1[user]
2 name = Tim Kersey
3 email = t@k-t.im
4 signingkey = ~/.ssh/id_ed25519.pub
5[color]
6 ui = 1
7[gc]
8 auto = 1
9[core]
10 excludesfile = ~/.gitignore
11 editor = nvim
12 filemode = false
13 fsmonitor = true
14 pager = delta
15[interactive]
16 diffFilter = delta --color-only --features=interactive
17[alias]
18 st = status -sb
19 ci = commit
20 cie = commit --allow-empty --allow-empty-message -m ''
21 cl = clone
22 br = branch
23 brn = branch --show-current
24 co = checkout
25 df = diff --ignore-space-at-eol
26 ds = diff --cached
27 lg = log --graph --decorate-refs-exclude=refs/tags --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
28 ada = add -p
29 fetch = fetch -v
30 chp = cherry-pick
31 ls = show --pretty="" --name-only
32 branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes
33 brr = "!f() { git branch | rg -v -e \"${1-main}$\" -e \"master$\" -e \"develop$\" | xargs git br -D; }; f \"$@\""
34 au = shortlog -s -n --all --no-merges
35 wk = worktree
36 bra = branch -a --sort=-committerdate
37[help]
38 autocorrect = 1
39[push]
40 default = simple
41 useForceIfIncludes = true
42[gpg]
43 format = ssh
44[fetch]
45 prune = true
46[commit]
47 gpgsign = true
48[pull]
49 rebase = false
50[hub]
51 protocol = ssh
52[merge]
53 conflictstyle = zdiff3
54[init]
55 defaultBranch = main
56[rebase]
57 updateRefs = true
58[diff]
59 colorMoved = default
60[delta]
61 navigate = true
62 light = false
63 side-by-side = true
64 line-numbers = true
65[delta "interactive"]
66 keep-plus-minux-markers = false
67
68[includeIf "gitdir:~/workspace/hsc/"]
69 path = ~/workspace/hsc/.gitconfig-hsc
70[credential "https://git-codecommit.us-east-1.amazonaws.com"]
71 provider = generic
72[credential]
73 helper =
74 helper = /usr/local/share/gcm-core/git-credential-manager
75 useHttpPath = true
76[credential "https://dev.azure.com"]
77 useHttpPath = true
78[filter "lfs"]
79 clean = git-lfs clean -- %f
80 smudge = git-lfs smudge -- %f
81 process = git-lfs filter-process
82 required = true