users/jan: add git command aliases
This commit is contained in:
parent
d715aeb92b
commit
327a787b6a
1 changed files with 6 additions and 0 deletions
|
@ -47,7 +47,9 @@
|
||||||
can = "commit --amend --no-edit";
|
can = "commit --amend --no-edit";
|
||||||
|
|
||||||
p = "push";
|
p = "push";
|
||||||
|
pt = "push --tags";
|
||||||
po = "push origin";
|
po = "push origin";
|
||||||
|
pot = "push origin --tags";
|
||||||
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";
|
||||||
|
@ -78,6 +80,7 @@
|
||||||
rlsu = "ls-remote --heads upstream";
|
rlsu = "ls-remote --heads upstream";
|
||||||
|
|
||||||
lo = "log --pretty=oneline";
|
lo = "log --pretty=oneline";
|
||||||
|
los = "log --pretty='format:%s'";
|
||||||
|
|
||||||
sma = "submodule add";
|
sma = "submodule add";
|
||||||
smui = "submodule update --init";
|
smui = "submodule update --init";
|
||||||
|
@ -89,6 +92,9 @@
|
||||||
sai = "stash apply --index";
|
sai = "stash apply --index";
|
||||||
sp = "stash pop";
|
sp = "stash pop";
|
||||||
spi = "stash pop --index";
|
spi = "stash pop --index";
|
||||||
|
|
||||||
|
t = "tag";
|
||||||
|
tf = "tag --force";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue