mirror of
https://github.com/rclone/rclone.git
synced 2025-08-10 22:23:57 +02:00
Updated What to do after the repository move (markdown)
@ -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.
|
Reference in New Issue
Block a user