-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
62 lines (62 loc) · 1.29 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
[user]
name = James Vickery
email = 14852491+jmsv@users.noreply.github.com
[alias]
s = status
a = add
b = branch -vv
ba = branch --all
aa = add -A
co = checkout
cb = checkout -b
com = checkout main
cos = checkout staging
ci = commit
cim = commit -m
ciam = commit -a -m
rv = remote -v
up = push
down = pull
po = push origin
f = fetch
fa = fetch --all
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ch = cherry-pick
sub = submodule
subs = submodule
subf = submodule foreach
subinit = submodule update --init --recursive
subm = submodule foreach git checkout master
subpull = submodule foreach git pull
diffc = diff --cached
fresh = clean -dxf
undocommit = reset HEAD~
undoci = reset HEAD~
uci = reset HEAD~
fuck = commit --amend
pullx = !git stash && git pull && git stash pop
pom = pull origin main
pushu = push -u
pushuo = push -u origin
chp = cherry-pick
st = stash
stu = stash -u
stp = stash pop
[core]
editor = vim
[push]
default = simple
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[pull]
rebase = false
[checkout]
defaultRemote = origin
[diff "lockb"]
textconv = bun
binary = true