blob: 34da46690070b5f34dfaafdb00f22f77e57ab168 (
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
28
29
30
31
32
33
34
35
36
|
#! /bin/sh
# Assume this script never run via PATH.
#
self=`realpath $0`
. `dirname $self`/modules
wd=`pwd`
if [ "$1" = "" ]; then
echo "source branch name expected" 1>&2
exit 1
fi
for i in $modules; do
echo "merge $i" 1>&2
cd $i
br=`git symbolic-ref -q HEAD`
br=`echo $br | sed -e 's%^refs/heads/%%'`
# Only allow fast-forward merges into master.
#
if [ "$br" = "master" ]; then
git merge --ff-only $*
else
git merge $*
fi
if [ $? -ne 0 ]; then
echo "merge FAILED" 1>&2
exit 1
fi
cd $wd
done
|