mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
Page:
What to do after the repository move
Pages
"serve" to Another Computer
Automatic Syncing from Google Drive to Server with rclone
Big syncs with millions of files
Configure Rclone using 1password (and Ansible)
Docker images
Export configuration password to env variable and only remember it for some time
Home
How to enable VSS for rclone
Install Rclone with Ansible
Install rclone via powershell script
Launch rclone on Android with Automate
Making your own OneDrive client to avoid shared quota? When GUI is unavailable, try the Azure CLI
Mounting Oracle OCI Object Storage Buckets as Local File System
Prompt "fusermount3": executable file not found in $PATH and cannot mount!
Rclone Optimizations
Securing rclone using password and config in & out commands [Android, Windows]
Setting up a Windows development environment for rclone
Systemd rclone mount
Third Party Installers
Third Party Integrations with rclone
Using Volume Shadow Copy Service (VSS) with rclone
What to do after the repository move
Windows Installation with Chocolatey
Windows PowerShell use rclone password command for config file password
how to run .exe application on rclone mount
rclone fstab mount helper script
rclone mount helper script
rclone on Android with Termux
turn your android phone into a media server
3
What to do after the repository move
Nick Craig-Wood edited this page 2019-07-29 09:27:15 +01:00
Repo move from github.com/ncw/rclone to github.com/rclone/rclone
On 2019-07-28 we moved the rclone repo from github.com/ncw/rclone
to github.com/rclone/rclone
as part of the maturing process of the rclone project.
Here are some instructions on how to fix-up your development environment
How to fix up your repository
If you have the GOPATH
environment variable set or all your code is under ~/go/src/github.com/ncw/rclone
then do this to move the code to its new place, if not, just cd
into the directory that contains the code.
cd ${GOPATHx:-${HOME}/go}
mkdir -p src/github.com/rclone
mv src/github.com/ncw/rclone src/github.com/rclone/rclone
cd src/github.com/rclone/rclone
Fixup the origin for the git repo
git remote set-url origin git@github.com:rclone/rclone.git
Test with
git checkout 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 checkout myfeature
git rebase master
# fix conflicts
The conflicts should be easy to fix as they will all be in package imports.