dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 692b87a3bf44080edddac4fe06f85cba3da4a822
parent 19e5e176322c9cf11426cb7dcca79cae41f2373c
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sun, 26 Jul 2020 12:44:04 +0200

git: fix stash push alias

Former-commit-id: 61206d356a02bd14a17979d6f5cef30e51c4a7ef
Diffstat:
Mgit/gitconfig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/git/gitconfig b/git/gitconfig @@ -41,7 +41,7 @@ rp = reset -p - ss = "!f(){ git stash push $@ -- $(git diff --staged --name-only); }; f" + ss = "!f(){ git stash push \"$@\" -- $(git diff --staged --name-only); }; f" sp = stash pop sa = stash apply sd = stash drop