Open iamnewton opened 9 years ago
$ git stash save “Description of my changes”`
_git_stash() { local desc=$1 if test ! -n "${desc}"; then echo -n "You forgot to give it a description" exit else git stash save "${desc}" fi }