From 4fc2ad6c2abc2b857d52d14ac948d21e96390ab3 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 13 Jun 2018 17:06:21 +0200 Subject: [PATCH] vcs/gitconfig: replace "stash save" with "stash push" in aliases "stash push" supports stashing only parts of the working tree which is very useful. We keep the "ss" alias as "stash push" would conflict with the existing alias for "stash pop". --- vcs/gitconfig.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vcs/gitconfig.in b/vcs/gitconfig.in index 7b76f41..3d3afce 100644 --- a/vcs/gitconfig.in +++ b/vcs/gitconfig.in @@ -125,9 +125,9 @@ fg = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo ## Misc. sl = stash list - ss = stash save - ssk = stash save --keep-index - ssu = stash save --include-untracked + ss = stash push + ssk = stash push --keep-index + ssu = stash push --include-untracked sa = stash apply --index sp = stash pop --index @@ -141,8 +141,8 @@ tig = ! PWD/bin/tig.pl # Create backup of uncommitted and untracked changes. - ssb = "! git stash save --include-untracked \ - \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \ + ssb = "! git stash push --include-untracked \ + -m \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \ >/dev/null \ && git stash apply >/dev/null" -- 2.43.2