-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
57 lines (51 loc) · 1.25 KB
/
Copy path.gitconfig
File metadata and controls
57 lines (51 loc) · 1.25 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
53
54
55
56
57
[user]
name = stephenyu
email = s.yu@less3.com
signingkey = F37DBC16AB5D2B68
[protocol]
version = 2
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --
s = status -uno --short --branch
st = status
co = checkout
c- = checkout -
rb = rebase --interactive
ap = add --patch
diffc = diff --cached
l1 = log --pretty=format:\"%Cblue%h%Creset - %an, %Cred%ar%Creset : %Cgreen%s\" --color=always
ci = ci-status -v
uno = status -uno
ct = commit -m
df = diff
pl = pull
unstage = reset HEAD --
last = log -1 HEAD --stat
wip = !git add -A && git commit -m "wip" --no-verify
cam = "!f() { git add -A && git commit -m \"$1\"; }; f"
[pull]
rebase = false
[gpg]
program = gpg
[worktree]
guessRemote = true
[diff]
colorMoved = default
[delta]
line-numbers = true
plus-color = "#012800"
minus-color = "#340001"
syntax-theme = Monokai Extended
[init]
defaultBranch = main
[maintenance]
auto = true
[interactive]
diffFilter = delta --color-only
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[trace2]
eventTarget = af_unix:dgram:/tmp/olly-git-trace2.sock