-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
52 lines (52 loc) · 1.15 KB
/
gitconfig
File metadata and controls
52 lines (52 loc) · 1.15 KB
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
[user]
email = cjberragan@gmail.com
name = cjber
signingkey = 81BB85948A4EAB9B
[init]
defaultBranch = main
[pull]
ff = only
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[commit]
gpgsign = true
[core]
excludesfile = /home/cjber/.gitignore_global
pager = diff-so-fancy | less --tabs=4 -RFX
[help]
autocorrect = 1
[rerere]
enabled = true
[alias]
co = checkout
ci = commit
st = status
br = branch
lg = log --oneline --graph --decorate --all
last = log -1 HEAD
unstage = reset HEAD --
amend = commit --amend
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
fixup = commit --fixup
so = switch
sc = switch -c
rs = restore
rss = restore --staged
grab = "\\!f() { git fetch origin && git switch \"$1\"; }; f"
mm = merge main
fp = !git fetch && git pull
[fetch]
prune = true
[coderabbit]
machineId = cli/866e06e3d72848ebae255a8845902f1e
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[delta]
side-by-side = true