aboutsummaryrefslogtreecommitdiff
path: root/rebase.sh
blob: bad9f654d291476e188cbe484802dd0d809f5912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh

. etc/git/modules

wd=`pwd`

if [ "$1" = "" ]; then
  echo "source branch name expected" 1>&2
  exit 1
fi

for i in $modules; do
  echo "rebase $i" 1>&2
  cd $i
  git rebase $*

  if [ $? -ne 0 ]; then
    echo "rebase FAILED" 1>&2
    exit 1
  fi

  cd $wd
done