File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 3
3
[alias ]
4
4
a = add
5
5
aa = add --all
6
+ aliases = ! git config --list | grep ' alias\\.' | sed ' s/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\ \t => \\2/' | sort
6
7
b = branch
8
+ branches = branch --sort=authordate
7
9
cm = commit -m
8
10
co = checkout
9
11
get = ! git fetch --prune && git pull --rebase && git submodule update --init --recursive
13
15
ls = ls-files
14
16
ls-ignored = ls-files --ignored --others --exclude-standard
15
17
m = merge
18
+ pr = ! gh pr
19
+ prls = ! gh pr list --author=@me
20
+ prs = ! gh pr status
21
+ prv = ! gh pr view
22
+ prvw = ! gh pr view -w
23
+ rblame = ! git blame -w -M -C -C -C
24
+ remotes = remote -v
25
+ root = ! cd $( git rev-parse --show-toplevel)
16
26
st = status
27
+ stashes = stash list
28
+ uncommit = reset --mixed HEAD~
29
+ unstage = reset -q HEAD --
17
30
what = show --no-patch --pretty='tformat:%h (%s, %ad)' --date=short
18
31
who = shortlog --summary --numbered --no-merges
19
32
[core ]
33
+ branch = auto
20
34
editor = code --wait
35
+ grep = auto
36
+ interactive = auto
21
37
longpaths = true
22
38
pager = delta
39
+ showBranch = auto
40
+ status = auto
41
+ ui = true
23
42
[diff ]
24
43
tool = default-difftool
25
44
colorMoved = default
26
45
[difftool "default-difftool "]
27
46
cmd = code --wait --diff $LOCAL $REMOTE
28
47
[delta ]
29
48
features = catppuccin-mocha
49
+ file-style = omit
50
+ file-decoration-style = none
51
+ hunk-label = " "
30
52
side-by-side = true
31
53
navigate = true
54
+ tabs = 2
32
55
true-color = always
33
56
hyperlinks = true
34
57
hyperlinks-file-link-format = " vscode://file/{path}:{line}"
37
60
[interactive ]
38
61
diffFilter = delta --color-only
39
62
[help ]
40
- autocorrect = - 1
63
+ autocorrect = 1
41
64
[log ]
42
65
abbrevCommit = true
43
66
decorate = short
46
69
conflictstyle = zdiff3
47
70
[mergetool "code "]
48
71
cmd = code --wait --merge $REMOTE $LOCAL $BASE $MERGED
72
+ [pager ]
73
+ log = delta
74
+ reflog = delta
75
+ show = delta
76
+ difftool = true
49
77
[pull ]
50
78
ff = only
51
79
[push ]
You can’t perform that action at this time.
0 commit comments