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