gosync icon indicating copy to clipboard operation
gosync copied to clipboard

Experiment - Sync files to S3, fast. Go package and CLI.

Results 6 gosync issues
Sort by recently updated
recently updated
newest added

Currently the region searching logic will skip over them, this could be fixed by adding code to correctly lookup a bucket region. https://github.com/brettweavnet/gosync/blob/master/gosync/s3.go#L73-L78

bug

http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETlocation.html

enhancement

Currently gosync fails if upload file size is more than 2GB. I think the cause is that `ioutil.ReadFile` is called in sync.go : line 173. Reference URL: https://code.google.com/p/go/issues/detail?id=2743 Here is...