Skip to content

How to update isolate's submodule

Stefano Maggiolo edited this page Aug 17, 2018 · 1 revision
ISOLATE_VERSION=vX.Y
git checkout master

cd isolate
git remote update
git fetch --tags
git rebase ${ISOLATE_VERSION}
cd ..

# Just to check, you should see just the hash changing to the commit of the new version.
git status

git commit -a -m "Update isolate to version ${ISOLATE_VERSION}"
git push