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"; 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";
}; };
}; };
} }