-
Notifications
You must be signed in to change notification settings - Fork 0
Master Branch Migration Notice
For the release of WA3 on 06/07/18 we will be moving WA2 from the master
branch to legacy
and WA3 will be moving from next
to master
. (For
compatibility we will track the master branch on next
until
the next release.)
If you have work you wish to keep for WA2 please ensure you backup your work before you attempt to update your master branch as all your local files will be removed.
Once you are ready to update your master branch from WA2 to WA3 please execute the following commands:
Retrieve the latest version of the repository:
git fetch --all
Switch to your master branch:
git checkout master
Hard reset your branch. Substituting <remote> for the name of your remote
tracking the main repository. (This is usually either upstream
or origin
and can be checked with git remote -v
):
git reset --hard <remote>/master
Warning: This will remove all existing files.
These steps are required as the next branch cannot be merged with the existing master branch due to a diverged history and we wish to preserve the history of WA3 going forward.