#!/bin/bash
# Commit to all submodules and super-repo

# First recurse every submodule from the bottom up.
# This makes sure that when modifying a "lower" submodule
# the "higher" one knows about it, including the super-repo.
git sfed "git commit -a $@ || :"
# Repeat the same thing in the super-repo
git commit -a "$@"

