-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
66 lines (66 loc) · 1.37 KB
/
.gitconfig
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
[user]
name = EverSeenTOTOTO
email = [email protected]
[core]
excludesfile = ~/.gitignore
autocrlf = input
editor = nvim
quotePath = false
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "status"]
added = green
changed = red
untracked = yellow
[alias]
ai = add -i
b = branch
c = commit -m
d = diff
cln = clone --recursive
# Switch to a branch, creating it if necessary.
# Show verbose output about tags, branches or remotes
tags = tag -l
branches = branch --all
remotes = remote --verbose
po = push origin
p1 = push 1dev
pu = push upstream
ck = checkout
cp = cherry-pick
st = status --column -sb
su = stash -u
ll = log --pretty=oneline -n 99 --graph --abbrev-commit --decorate --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge --skip
process = git-lfs filter-process
[branch]
sort = -committerdate
[commit]
gpgsign = false
[stash]
showPatch = 1
autocorrect = 1
[pull]
ff = only
[push]
default = simple
autoSetupRemote = true
[help]
autocorrect = 1
[init]
defaultBranch = main
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait $MERGED
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE