-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
64 lines (64 loc) · 2.07 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
[user]
email = fork_killet@outlook.com
name = ForkΨKILLET
signingkey = F817D829499DDE36
[credential]
helper = store
[core]
editor = env vim
pager = delta
commentChar = "#"
[init]
defaultBranch = main
[pull]
rebase = false
[http]
sslverify = false
[alias]
m = !vim ~/.gitconfig # Manage
ma = !vim ./.github/workflows/* # Manage Action
l = log --graph --all # Log
la = log -1 HEAD # Log lAst
lo = log --graph --all --oneline # Log Oneline
lr = reflog # RefLog
s = status # Status
d = diff # Different
dc = diff --cached # Different Cached
da = diff --cached HEAD~ # Different lAst
a = add # Add
aa = add . # Add All
ac = !git aa && git c # Add all and Commit
ac0 = !HUSKY=0 git ac # Add all and Commit with HUSKY=0
rmc = rm --cached # Remove Cached
c = commit # Commit
ca = commit --amend # Commit Amend
cam = !git ca -m \"$(echo $(git la --pretty=%B))\" # Commit Amend with last Message
ca0 = !HUSKY=0 git commit --amend # Commit Amend with HUKSY=0
aca = !git aa && git ca # Add all and Commit Amend
aca0= !HUSKY=0 git aca # Add all and Commit Amend with HUSKY=0
acam= !git aca -m \"$(echo $(git la --pretty=%B))\" # Add all and Commit Amend with last Message
co = checkout # CheckOut
b = branch # Branch
bs = switch # Branch Switch
p = push # Push
rem = remote # REMote
ig = !vim ./.gitignore && git a .gitignore # IGnore
rh = reset --hard # Reset Hard
re = reset --hard HEAD@{1} # REdo
r = rebase # Rebase
ri = rebase -i # Rebase Interactive
rc = rebase --continue # Rebase Continue
ra = rebase --abort # Remove Abort
cp = cherry-pick # Cherry Pick
cpa = cherry-pick --abort # Cherry Pick About
cpc = cherry-pick --continue # Cherry Pick Continue
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[commit]
gpgsign = true