grive2/README

39 lines
1.6 KiB
Plaintext
Raw Normal View History

2012-05-18 04:44:38 +04:00
Grive 0.1.0
2012-04-25 22:21:23 +04:00
2012-05-24 02:50:57 +04:00
Grive is still considered experimental. It just downloads all the files in your google drive
into the current directory. After you make some changes to the local files, run grive and
2012-05-31 20:50:56 +04:00
it will upload your changes back to your google drive. New files created in local or google
drive will be uploaded or downloaded respectively. Deleted files will also be "removed".
Currently Grive will NOT destroy any of your files: it will only rename local files to
start with a dot, or put it in the google drive trash. You can always recover them.
There are a few things that grive does not do at the moment:
- wait for changes in file system to occur and upload. Grive only sync when you run it.
2012-05-24 02:50:57 +04:00
Of course these will be done in future, possibly the next release.
2012-04-25 22:21:23 +04:00
This is compiled in Fedora 16 x64. You need the following libraries to run:
2012-05-31 20:50:56 +04:00
- json-c
- libcurl
- libstdc++
- openssl
- Boost (Boost filesystem is required)
There are also some optional dependencies:
- CppUnit (for unit tests)
- libbfd (for backtrace)
- binutils
2012-04-25 22:21:23 +04:00
2012-05-24 02:50:57 +04:00
When grive is ran for the first time, you should use the "-a" argument to grant
2012-04-26 22:12:47 +04:00
permission to grive to access to your Google Drive. An URL should be printed.
2012-05-24 02:50:57 +04:00
Go to the link. You will need to login to your google account if you haven't
2012-04-26 22:12:47 +04:00
done so. After granting the permission to grive, the browser will show you
an authenication code. Copy-and-paste that to the standard input of grive.
2012-04-25 22:21:23 +04:00
2012-05-31 20:50:56 +04:00
If everything works fine, grive will create a .grive and a .grive_state file in your
current directory. It will also start downloading files from your Google Drive to
your current directory.
2012-04-25 22:21:23 +04:00
2012-04-26 22:12:47 +04:00
Enjoy!