From 19dd5e93024ec21b88363613af62d5ac19392f9d Mon Sep 17 00:00:00 2001 From: Tekaoh <45337851+Tekaoh@users.noreply.github.com> Date: Mon, 26 Nov 2018 21:58:25 -0600 Subject: [PATCH] Better instructions --- _docs/migrate-from-1.2.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/_docs/migrate-from-1.2.md b/_docs/migrate-from-1.2.md index bf41277..9ee9e13 100644 --- a/_docs/migrate-from-1.2.md +++ b/_docs/migrate-from-1.2.md @@ -36,4 +36,11 @@ git checkout master ``` You may now get updates to your client by opening a GIT Bash and running: `git pull` -__*Note:*__ If you have already configured your client to get updates from the client-assets repository on BitBucket, insctructions on how to switch are in developement. In the meantime, it's easiest to start from a fresh unpack of the client if you still have the archive or else grab v1.2.1 which is already preconfigured. +__*Note:*__ If you have already configured your client to get updates from the client-assets repository on BitBucket, you will need to use these commands instead: +``` +git remote remove origin +git remote add origin https://github.com/SWG-Source/client-assets.git +git branch --set-upstream-to=origin/master master +git reset --hard origin/master +``` +You should then test your configuration with `git pull` to make sure it worked.