two more services with multiple special remotes
authorJoey Hess <joeyh@joeyh.name>
Thu, 5 Mar 2020 02:42:33 +0000 (22:42 -0400)
committerJoey Hess <joeyh@joeyh.name>
Thu, 5 Mar 2020 02:42:33 +0000 (22:42 -0400)
doc/special_remotes.mdwn
doc/tips/dropboxannex.mdwn
doc/tips/owncloudannex.mdwn

index 205c5736e758fe3edd3247eb23cecdebd1799ebb..4471b2df1c6612e58bbf65e77d215b882b514ddd 100644 (file)
@@ -38,7 +38,7 @@ Here are specific instructions for using git-annex with various services:
 * [[Box.com|tips/using_box.com_as_a_special_remote]]
 * [Ceph](https://github.com/mhameed/git-annex-remote-ceph)
 * [chef-vault](https://github.com/3ofcoins/knife-annex/)
-* [[Dropbox|rclone]]
+* [[Dropbox|tips/dropboxannex]]
 * [[FTP|rclone]]
 * [[Flickr|tips/flickrannex]]
 * [Freenet](https://github.com/xloem/gitlakepy)
index 0f82f659d7160545eb3825894ec68344efb586ab..95092236afb778df3fcf9ad9f7e44967edc09e0c 100644 (file)
@@ -1,29 +1,11 @@
-dropboxannex 0.2.0
-=========
+For using Dropbox as a special remote, there are currently two choices:
 
-Hook program for gitannex to use dropbox as backend
-
-# Requirements:
-
-    python2
-    python-pkg-resources
-
-Credit for the Dropbox api interface goes to Dropbox.
-
-# Install
-Clone the git repository in your home folder.
-
-    git clone git://github.com/TobiasTheViking/dropboxannex.git 
-
-This should make a ~/dropboxannex folder
-
-# Setup
-Make the file executable, and link it into PATH
-
-    cd ~/dropboxannex; chmod +x git-annex-remote-dropbox; sudo ln -sf `pwd`/git-annex-remote-dropbox /usr/local/bin/git-annex-remote-dropbox
-
-# Commands for gitannex:
-
-    git annex initremote dropbox type=external externaltype=dropbox encryption=shared folder=gitannex
-    git annex describe dropbox "the dropbox library"
+* rclone supports the Dropbox API,
+  so the [[rclone_special_remote|special_remotes/rclone]] can be used.  
+  (Actively maintained)
+* Alternatively, there is a dedicated special remote,
+  <https://github.com/TobiasTheViking/dropboxannex>
+  (Last updated 2014)
 
+At this time it's not clear which is better, so if you find one works
+best, please comment below.
index 31e7f682e1dd8360160bfbb965304ae4d0468377..509f8749c1408ed3db1e361d75edf6c02a5e478c 100644 (file)
@@ -1,32 +1,14 @@
-owncloudannex 0.2.0
-=========
+For using Owncloud and Nextcloud 
+as a special remote, there are currently three choices:
 
-Hook program for gitannex to use owncloud as backend
+* Use git-annex's builtin [[special_remotes/webdav]] support.
 
-# Requirements:
+* Alternatively, rclone supports them
+  so the [[rclone_special_remote|special_remotes/rclone]] can be used.
 
-    python2
-    python-requests
+* Alternatively, there is a dedicated special remote,
+  <https://github.com/TobiasTheViking/owncloudannex>
+  (Last updated 2014)
 
-Credit for the webdav api interface goes to https://launchpad.net/python-webdav-lib
-
-# Install
-Clone the git repository in your home folder.
-
-    git clone git://github.com/TobiasTheViking/owncloudannex.git 
-
-This should make a ~/owncloudannex folder
-
-# Setup
-Make the file executable, and link it into PATH
-
-    cd ~/owncloudannex; chmod +x git-annex-remote-owncloud; sudo ln -sf `pwd`/git-annex-remote-owncloud /usr/local/bin/git-annex-remote-owncloud
-
-# Commands for gitannex:
-
-    USERNAME="login" PASSWORD="password" git annex initremote owncloud type=external externaltype=owncloud encryption=shared folder=gitannex url="https://host/remote.php/webdav/"
-    git annex describe dropbox "the owncloud library"
-
-# Note
-
-This can also be accomplished through the [[special_remotes/webdav]] special remote as Owncloud and Nextcloud are basically webdav endpoints.
+At this time it's not clear which is better, so if you find one works
+best, please comment below.