mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 12:05:05 +08:00
Rename to rclone
This commit is contained in:
parent
fce2af7934
commit
f5e60b6e37
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,4 +2,4 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
test-env*
|
test-env*
|
||||||
junk/
|
junk/
|
||||||
swiftsync
|
rclone
|
||||||
|
|
20
README.md
20
README.md
|
@ -1,7 +1,13 @@
|
||||||
Swiftsync
|
Rclone
|
||||||
==========
|
======
|
||||||
|
|
||||||
Sync files and directories to and from swift
|
Sync files and directories to and from
|
||||||
|
|
||||||
|
* Openstack Swift
|
||||||
|
* Rackspace cloud files
|
||||||
|
* Amazon S3
|
||||||
|
* Google Drive
|
||||||
|
* The local filesystem
|
||||||
|
|
||||||
FIXME
|
FIXME
|
||||||
|
|
||||||
|
@ -9,15 +15,15 @@ FIXME
|
||||||
Install
|
Install
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Swiftsync is a Go program and comes as a single binary file.
|
Rclone is a Go program and comes as a single binary file.
|
||||||
|
|
||||||
Download the relevant binary from
|
Download the relevant binary from
|
||||||
|
|
||||||
- http://www.craig-wood.com/nick/pub/swiftsync/
|
- http://www.craig-wood.com/nick/pub/rclone/
|
||||||
|
|
||||||
Or alternatively if you have Go installed use
|
Or alternatively if you have Go installed use
|
||||||
|
|
||||||
go get github.com/ncw/swiftsync
|
go get github.com/ncw/rclone
|
||||||
|
|
||||||
and this will build the binary in `$GOPATH/bin`. You can then modify
|
and this will build the binary in `$GOPATH/bin`. You can then modify
|
||||||
the source and submit patches.
|
the source and submit patches.
|
||||||
|
@ -38,7 +44,7 @@ Contact and support
|
||||||
|
|
||||||
The project website is at:
|
The project website is at:
|
||||||
|
|
||||||
- https://github.com/ncw/swiftsync
|
- https://github.com/ncw/rclone
|
||||||
|
|
||||||
There you can file bug reports, ask for help or contribute patches.
|
There you can file bug reports, ask for help or contribute patches.
|
||||||
|
|
||||||
|
|
|
@ -810,7 +810,7 @@ func (fs *FsObjectDrive) Storable() bool {
|
||||||
// Open an object for read
|
// Open an object for read
|
||||||
func (fs *FsObjectDrive) Open() (in io.ReadCloser, err error) {
|
func (fs *FsObjectDrive) Open() (in io.ReadCloser, err error) {
|
||||||
req, _ := http.NewRequest("GET", fs.url, nil)
|
req, _ := http.NewRequest("GET", fs.url, nil)
|
||||||
req.Header.Set("User-Agent", "swiftsync/1.0")
|
req.Header.Set("User-Agent", "rclone/1.0")
|
||||||
res, err := fs.drive.client.Do(req)
|
res, err := fs.drive.client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -205,7 +205,7 @@ func (f *FsLocal) readPrecision() (precision time.Duration) {
|
||||||
precision = time.Second
|
precision = time.Second
|
||||||
|
|
||||||
// Create temporary file and test it
|
// Create temporary file and test it
|
||||||
fd, err := ioutil.TempFile("", "swiftsync")
|
fd, err := ioutil.TempFile("", "rclone")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If failed return 1s
|
// If failed return 1s
|
||||||
// fmt.Println("Failed to create temp file", err)
|
// fmt.Println("Failed to create temp file", err)
|
||||||
|
|
15
notes.txt
15
notes.txt
|
@ -1,18 +1,5 @@
|
||||||
Names
|
Names
|
||||||
* cakesync
|
* rclone - domain ok, apt ok
|
||||||
* zzsync
|
|
||||||
* pqrsync
|
|
||||||
* gogosync
|
|
||||||
* pogosync
|
|
||||||
* oursync
|
|
||||||
* godupe
|
|
||||||
* gobsync
|
|
||||||
* gobcopy
|
|
||||||
* togosync
|
|
||||||
* tangosync
|
|
||||||
* mangosync
|
|
||||||
* cargosync
|
|
||||||
* cargocopy - domain available
|
|
||||||
|
|
||||||
Todo
|
Todo
|
||||||
* Make a test suite which can run on all the given types of fs
|
* Make a test suite which can run on all the given types of fs
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Sync files and directories to and from swift
|
// Sync files and directories to and from local and remote object stores
|
||||||
//
|
//
|
||||||
// Nick Craig-Wood <nick@craig-wood.com>
|
// Nick Craig-Wood <nick@craig-wood.com>
|
||||||
package main
|
package main
|
||||||
|
@ -480,7 +480,7 @@ var Commands = []Command{
|
||||||
|
|
||||||
// syntaxError prints the syntax
|
// syntaxError prints the syntax
|
||||||
func syntaxError() {
|
func syntaxError() {
|
||||||
fmt.Fprintf(os.Stderr, `Sync files and directories to and from swift
|
fmt.Fprintf(os.Stderr, `Sync files and directories to and from local and remote object stores
|
||||||
|
|
||||||
Syntax: [options] subcommand <parameters> <parameters...>
|
Syntax: [options] subcommand <parameters> <parameters...>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Tests for swiftsync
|
// Tests for rclone
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
Loading…
Reference in New Issue
Block a user