Fix for cloning
This is a bugfix for mepo. Before, mepo did this when cloning a branch/tag called foo
:
git clone repo.git
git checkout foo
This worked just fine until an update to the MOM6 repo in GEOS. The issue is that in MOM6, the fork was updated and in that update, the submodules underneath changed on the default branch and there were less. So, in doing so, you couldn't get the new submodules. The solution is to do:
git clone -b foo repo.git
This exposed some other issues in status
and compare
which seem to be fixed, but time will tell.