diff --git a/home/modules/git.nix b/home/modules/git.nix index d76751b..105a3be 100644 --- a/home/modules/git.nix +++ b/home/modules/git.nix @@ -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"; }; }; };