Skip to content

Master Branch Migration Notice

Marc Bonnici edited this page Jul 2, 2018 · 6 revisions

WA 3 Release - 06/07/18

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.

Clone this wiki locally