summaryrefslogtreecommitdiff
path: root/git/branch.sh
blob: 14d72dda14dd27655bbcca738010c39e64eebb66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

# Assume this script never run via PATH.
#
self=`realpath $0`
. `dirname $self`/modules

wd=`pwd`

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

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

  cd $wd
done