blob: f9c50438d7f9583cc93576892530043f5e7e45b1 (
plain) (
blame)
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
|
[user]
name = Nicholas Tay
email = nick@windblume.net
[alias]
p = push
pu = push -u
puo = "!git push -u origin \"$(git branch --show-current)\""
pf = push --force-with-lease
pff = push -f
pl = pull --recurse-submodules
plo = pull
f = fetch
fo = fetch origin
s = status
su = status --untracked-files=normal
sua = status -u
st = stash
stm = stash -m
stp = stash pop
stpp = "!git stash pop \"$(git stash list | fzf | cut -d ':' -f 1)\""
stl = stash list
stD = stash drop
sts = "!git stash show -p stash@{$1} #"
stss = "!git stash show -p \"$(git stash list | fzf | cut -d ':' -f 1)\""
r = remote
rv = remote -v
rb = rebase
rbi = rebase -i
rbd = rebase development
rbm = rebase master
a = add
aa = add .
ap = add -p
co = checkout
coo = "!git checkout \"$(git for-each-ref --format='%(refname:short)' refs/heads/ | fzf)\""
cob = checkout -b
cod = checkout development
com = checkout master
cot = checkout --track
cott = "!git checkout --track \"$(git for-each-ref --format='%(refname:short)' refs/remotes/ | fzf)\""
c = commit
ca = commit -a
cm = commit -m
cam = commit -a -m
camd = commit --amend
d = diff
dc = diff --cached
l = log
m = merge
md = merge development
mm = merge master
rl = reflog
res = restore --staged
ress = restore
b = branch
br = branch --remote
bD = branch -D
bDD = "!git branch -D \"$(git for-each-ref --format='%(refname:short)' refs/heads/ | fzf)\""
chp = cherry-pick
cl = clone --recurse-submodules
cll = clone
[core]
excludesfile = $HOME/.config/git/gitignore
|