gitconfig: add revert aliases
This commit is contained in:
parent
4783293a3d
commit
daa8beedbb
|
@ -52,6 +52,9 @@
|
||||||
rh = reset --hard
|
rh = reset --hard
|
||||||
rom = !sh -c 'git fetch && git rebase origin/master'
|
rom = !sh -c 'git fetch && git rebase origin/master'
|
||||||
rr = !sh -c 'git fetch && git reset --hard $(git rb)'
|
rr = !sh -c 'git fetch && git reset --hard $(git rb)'
|
||||||
|
rv = revert
|
||||||
|
rvh = revert HEAD
|
||||||
|
rvnh = revert -n HEAD
|
||||||
s = status
|
s = status
|
||||||
shp = show -p
|
shp = show -p
|
||||||
sl = stash list
|
sl = stash list
|
||||||
|
|
Loading…
Reference in New Issue