From 72837fdf4c77a06e673443cb150e5eeccaac36a7 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 4 Jul 2018 11:07:43 +0300 Subject: [PATCH] Added Git alias for `git stash pop`. --- .config/git/config | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/git/config b/.config/git/config index fa18eb6..5724ab7 100644 --- a/.config/git/config +++ b/.config/git/config @@ -13,6 +13,7 @@ fixup = !cd "${GIT_PREFIX:-$PWD}" && git commit --fixup $(git last-commit) forget = reset HEAD^ merg = merge --no-edit + pop = stash pop posh = push --set-upstream origin HEAD Pull = pull --progress --ff --tags pull-force = !git fetch && git reset --hard "$(git tracking)" -- GitLab