home/jan/git: add aliases for the cherry-pick
This commit is contained in:
parent
0bda1d2ff2
commit
8633ce3af3
1 changed files with 16 additions and 0 deletions
|
@ -26,32 +26,48 @@
|
||||||
co = "switch";
|
co = "switch";
|
||||||
cob = "switch -c";
|
cob = "switch -c";
|
||||||
cobf = "switch -C";
|
cobf = "switch -C";
|
||||||
|
|
||||||
st = "status -sb";
|
st = "status -sb";
|
||||||
|
|
||||||
d = "diff";
|
d = "diff";
|
||||||
dc = "diff --cached";
|
dc = "diff --cached";
|
||||||
|
|
||||||
aa = "add .";
|
aa = "add .";
|
||||||
ai = "add -i";
|
ai = "add -i";
|
||||||
|
|
||||||
c = "commit";
|
c = "commit";
|
||||||
cm = "commit -m";
|
cm = "commit -m";
|
||||||
ca = "commit --amend";
|
ca = "commit --amend";
|
||||||
cam = "commit --amend -m";
|
cam = "commit --amend -m";
|
||||||
can = "commit --amend --no-edit";
|
can = "commit --amend --no-edit";
|
||||||
|
|
||||||
p = "push";
|
p = "push";
|
||||||
po = "push origin";
|
po = "push origin";
|
||||||
pf = "push --force-with-lease";
|
pf = "push --force-with-lease";
|
||||||
pfo = "push --force-with-lease origin";
|
pfo = "push --force-with-lease origin";
|
||||||
pl = "pull";
|
pl = "pull";
|
||||||
plo = "pull origin";
|
plo = "pull origin";
|
||||||
|
|
||||||
f = "fetch";
|
f = "fetch";
|
||||||
fo = "fetch origin";
|
fo = "fetch origin";
|
||||||
fa = "fetch --all";
|
fa = "fetch --all";
|
||||||
fap = "fetch --all --prune";
|
fap = "fetch --all --prune";
|
||||||
|
|
||||||
rb = "rebase";
|
rb = "rebase";
|
||||||
rbi = "rebase -i";
|
rbi = "rebase -i";
|
||||||
rbc = "rebase --continue";
|
rbc = "rebase --continue";
|
||||||
|
rba = "rebase --abort";
|
||||||
|
|
||||||
|
ch = "cherry-pick";
|
||||||
|
chi = "cherry-pick -i";
|
||||||
|
chc = "cherry-pick --continue";
|
||||||
|
cha = "cherry-pick --abort";
|
||||||
|
|
||||||
lo = "log --pretty=oneline";
|
lo = "log --pretty=oneline";
|
||||||
|
|
||||||
sma = "submodule add";
|
sma = "submodule add";
|
||||||
smui = "submodule update --init";
|
smui = "submodule update --init";
|
||||||
|
|
||||||
s = "stash";
|
s = "stash";
|
||||||
sm = "stash push -m";
|
sm = "stash push -m";
|
||||||
sl = "stash list";
|
sl = "stash list";
|
||||||
|
|
Loading…
Reference in a new issue