user/git: add aliases for stash command

Closes #11
This commit is contained in:
Dmitriy Pleshevskiy 2023-03-31 17:50:44 +03:00
parent 74a23f8f2e
commit e3341e1233
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
1 changed files with 7 additions and 0 deletions

View File

@ -67,6 +67,13 @@ in
lo = "log --pretty=oneline";
sma = "submodule add";
smui = "submodule update --init";
s = "stash push";
sm = "stash push -m";
sl = "stash list";
sa = "stash apply";
sai = "stash apply --index";
sp = "stash pop";
spi = "stash pop --index";
};
};
};