#!/bin/bash
# Verify that we are in the super-repo
[ -d CanAM ] ||  { echo "ERROR: You MUST be in the CanESM super-repo" ; exit 1 ; }

git branch "$@"
git submodule foreach --recursive "git branch $@"
