Merge branch 'master' of ssh://git-annex.branchable.com
This commit is contained in:
commit
3c7d7a73d5
5 changed files with 78 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
[[!comment format=mdwn
|
||||
username="http://joeyh.name/"
|
||||
nickname="joey"
|
||||
subject="comment 9"
|
||||
date="2013-05-23T18:44:46Z"
|
||||
content="""
|
||||
@yarikoptic you said before the error was \"Read-only file system\". Now you're saying it's \"Cross-device link\". I'm slightly confused.
|
||||
|
||||
I've reworked the android app to not need any hard links. Try the current autobuild: <http://downloads.kitenet.net/git-annex/autobuild/android/git-annex.apk>
|
||||
"""]]
|
|
@ -0,0 +1,14 @@
|
|||
### Please describe the problem.
|
||||
git-annex will randomly crash.
|
||||
|
||||
### What steps will reproduce the problem?
|
||||
Unknown. Keeping git-annex running for an extended period, failing to sync properly on XMPP(not sure if that is relevant, but given this haven't been found before it might be)
|
||||
|
||||
### What version of git-annex are you using? On what operating system?
|
||||
git-annex version: 4.20130521-g20710d4 (And multiple prior versions)
|
||||
|
||||
### Please provide any additional information below.
|
||||
|
||||
.git/annex/daemon.log upload: http://paste.ubuntu.com/5694813/
|
||||
|
||||
I could find no debug.log?
|
|
@ -0,0 +1,8 @@
|
|||
[[!comment format=mdwn
|
||||
username="https://www.google.com/accounts/o8/id?id=AItOawlQ7ZdQxAps4v0cl5J3wKGWD8243Gy8-m0"
|
||||
nickname="Phil"
|
||||
subject="PPA Package Pinning"
|
||||
date="2013-05-23T21:18:14Z"
|
||||
content="""
|
||||
@Pedro, see <http://askubuntu.com/a/170265> for blocking all packages except git-annex from François's repo.
|
||||
"""]]
|
|
@ -0,0 +1,10 @@
|
|||
[[!comment format=mdwn
|
||||
username="http://joeyh.name/"
|
||||
nickname="joey"
|
||||
subject="comment 10"
|
||||
date="2013-05-23T20:04:03Z"
|
||||
content="""
|
||||
You can enable a special remote on a clone by running `git annex enableremote $name`, where $name is the name you used to originally create the special remote. (Older versions of git-annex used `git annex initremote` to enable the special remote on the clone.)
|
||||
|
||||
(Just in case, I have verified that embedcreds does cause the cipher= to be stored in the remote.log. It does.)
|
||||
"""]]
|
36
doc/tips/googledriveannex.mdwn
Normal file
36
doc/tips/googledriveannex.mdwn
Normal file
|
@ -0,0 +1,36 @@
|
|||
googledriveannex
|
||||
=========
|
||||
|
||||
Hook program for gitannex to use Google Drive as backend
|
||||
|
||||
# Requirements:
|
||||
|
||||
python2
|
||||
|
||||
Credit for the googledrive api interface goes to google
|
||||
|
||||
## Install
|
||||
Clone the git repository in your home folder.
|
||||
|
||||
git clone git://github.com/TobiasTheViking/googledriveannex.git
|
||||
|
||||
This should make a ~/googledriveannex folder
|
||||
|
||||
## Setup
|
||||
Run the program once to make an empty config file
|
||||
|
||||
cd ~/googledriveannex; python2 googledriveannex.py
|
||||
|
||||
## Commands for gitannex:
|
||||
|
||||
git config annex.googledrive-hook '/usr/bin/python2 ~/googledriveannex/googledriveannex.py'
|
||||
git annex initremote googledrive type=hook hooktype=googledrive encryption=shared
|
||||
git annex describe googledrive "the googledrive library"
|
||||
|
||||
## Bugs
|
||||
I currently have to two test files i have uploaded, that i can't delete from my Google Drive, either through the hook program, or through the web interface.
|
||||
|
||||
Other files have deleted as they should. Interestingly the hook program can't find the two test files either. They are only visible on the web interface(and maybe other interfaces).
|
||||
|
||||
I'm not sure if this error is caused by the hook, but others have experienced this issue as well so i'm guessing it is more generic. The hook could still potentially trigger it somehow.
|
||||
|
Loading…
Reference in a new issue