Skip to content

Fix for cloning

Compare
Choose a tag to compare
@mathomp4 mathomp4 released this 16 Mar 19:40
· 219 commits to main since this release
5fa4144

DOI

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.