From 7f1ff0836cc4c8f2def2d5c1607887b57cf4001a Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 28 Jul 2019 19:27:59 +0100 Subject: [PATCH] Updated What to do after the repository move (markdown) --- What-to-do-after-the-repository-move.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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