summaryrefslogtreecommitdiff
path: root/git/stash-pop.sh
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-07 16:29:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-07 16:29:13 +0200
commitb9402bd52dc47ef3b6bf439276ec536fe9ddb18a (patch)
treeadef95cc9ac7a6661871a02a8b4f34ca54560bba /git/stash-pop.sh
Start with git helper scripts and extra documentation
Diffstat (limited to 'git/stash-pop.sh')
-rwxr-xr-xgit/stash-pop.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/git/stash-pop.sh b/git/stash-pop.sh
new file mode 100755
index 0000000..be43664
--- /dev/null
+++ b/git/stash-pop.sh
@@ -0,0 +1,15 @@
+#! /bin/sh
+
+# Assume this script never run via PATH.
+#
+self=`realpath $0`
+. `dirname $self`/modules
+
+wd=`pwd`
+
+for i in $modules; do
+ echo "stash pop $i" 1>&2
+ cd $i
+ git stash pop
+ cd $wd
+done