From 75cb85e0cfa66480492b80ada19bd5a02ea12305 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 29 May 2015 18:31:08 +0200 Subject: Add git helper scripts --- stash.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 stash.sh (limited to 'stash.sh') diff --git a/stash.sh b/stash.sh new file mode 100755 index 0000000..999f37e --- /dev/null +++ b/stash.sh @@ -0,0 +1,27 @@ +#! /bin/sh + +. etc/git/modules + +wd=`pwd` + +for i in $modules; do + echo "stash $i" 1>&2 + cd $i + + if [ "$1" = "pop" -o "$1" = "apply" ]; then + l=`git stash list` + if [ -z "$l" ]; then + cd $wd + continue + fi + fi + + git stash $* + + if [ $? -ne 0 ]; then + echo "stash FAILED" 1>&2 + exit 1 + fi + + cd $wd +done -- cgit v1.1