From 2842248bbc9d54600d6af7164ea5456aa0019fd1 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sun, 14 Aug 2011 18:11:55 +0300 Subject: [PATCH] Added gdrop alias. IAlias for git stash && git stash drop. --- bash_aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash_aliases b/bash_aliases index 800685a4..95586c9e 100644 --- a/bash_aliases +++ b/bash_aliases @@ -15,3 +15,5 @@ alias top="htop" # Automatic title to Youtube-dl alias youtube-dl="youtube-dl -t" +# git specific. This is the command which I use when git asks me to commit something and says that I have modified files, even when I haven't. +alias gdrop="git stash && git stash drop"