Updated What to do after the repository move (markdown)

Nick Craig-Wood 2019-07-28 19:27:59 +01:00
parent bc7bc5a447
commit 7f1ff0836c

@ -24,5 +24,18 @@ git remote set-url origin git@github.com:rclone/rclone.git
Test with
```
git fetch origin
git co master
git pull
```
You will need to pull to get the code to build again.
If you are working on a branch say `myfeature` then you will need to rebase it on master
```
git co myfeature
git rebase master
# fix conflicts
```
The conflicts should be easy to fix as they will all be in package imports.