diff --git a/What-to-do-after-the-repository-move.md b/What-to-do-after-the-repository-move.md index 040daee..2602e61 100644 --- a/What-to-do-after-the-repository-move.md +++ b/What-to-do-after-the-repository-move.md @@ -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. \ No newline at end of file