You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is useful for getting a known good VVV version, for instance:
# make a new blank repository in the current directory
git init
# add a remote
git remote add origin url://to/source/repository
# fetch a commit (or branch or tag) of interest# Note: the full history of this commit will be retrieved
git fetch origin <sha1-of-commit-of-interest># reset this repository's master branch to the commit of interest
git reset --hard FETCH_HEAD