aboutsummaryrefslogtreecommitdiff
path: root/stash.sh
blob: 999f37e07bbd871bda2f776072b1609675a53591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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