From 72326f0133d160e1b8dd78548dd4f2a9308af3a3 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 4 May 2019 22:54:20 +0300 Subject: [PATCH] Git stash aliases. --- .config/git/config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/git/config b/.config/git/config index a86056f..9d6558d 100644 --- a/.config/git/config +++ b/.config/git/config @@ -24,7 +24,8 @@ serve-http = !git update-server-info && cd .git && python -m http.server 8080 shove = push --force-with-lease squash = !cd "${GIT_PREFIX:-$PWD}" && git commit --squash $(git last-commit) - staash = stash --all + staash = stash push --all + staassh = stash push --all --include-untracked stat = status --short --branch tag-version = !git tag --annotate --force --message "v$(cat VERSION)" "v$(cat VERSION)" tracking = rev-parse --abbrev-ref --symbolic-full-name @{upstream} -- GitLab