summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-09-17 18:37:38 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-09-17 18:37:38 -0400
commit756338fb2e920be86f1d25fbe8be7e9bc88d2491 (patch)
tree8a4c9c4b48f1c528b163587e63dce1b6a8441dbb /doc
parentb73d8225d5c95241eedb5969846f859a7f69db65 (diff)
idea
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/exclude_files_on_a_given_remote.mdwn16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/todo/exclude_files_on_a_given_remote.mdwn b/doc/todo/exclude_files_on_a_given_remote.mdwn
new file mode 100644
index 000000000..fbb3f90be
--- /dev/null
+++ b/doc/todo/exclude_files_on_a_given_remote.mdwn
@@ -0,0 +1,16 @@
+Say I have some files on remote A. But I'm away from it, and transferring
+files from B to C. I'd like to avoid transferring any files I already have
+on A.
+
+Something like:
+
+ git annex copy --to C --exclude-on A
+
+This would not contact A, just use its cached location log info.
+
+I suppose I might also sometime want to only act on files that are
+thought/known to be on A.
+
+ git annex drop --only-on A
+
+--[[Joey]]