users/jan: add git command aliases

This commit is contained in:
Dmitriy Pleshevskiy 2024-11-06 16:52:38 +03:00
parent d715aeb92b
commit 327a787b6a
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -47,7 +47,9 @@
can = "commit --amend --no-edit";
p = "push";
pt = "push --tags";
po = "push origin";
pot = "push origin --tags";
pf = "push --force-with-lease";
pfo = "push --force-with-lease origin";
pl = "pull";
@ -78,6 +80,7 @@
rlsu = "ls-remote --heads upstream";
lo = "log --pretty=oneline";
los = "log --pretty='format:%s'";
sma = "submodule add";
smui = "submodule update --init";
@ -89,6 +92,9 @@
sai = "stash apply --index";
sp = "stash pop";
spi = "stash pop --index";
t = "tag";
tf = "tag --force";
};
};
}