blob: b97353b467add557d5482335470db28bdcc0a894 [file] [log] [blame]
#!/bin/sh
if [ ! -f BRANCHES ]; then
echo "No BRANCHES file"
exit 1
fi
git fetch -f stable
while read r; do
case "$r" in
[a-z]*)
git merge $r
;;
esac
done < BRANCHES
exit 0