summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-12-01 17:43:38 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-12-01 17:43:38 -0400
commita08c4462ac4547d51834e46d6cd687f6c962522f (patch)
tree594d71f9278f3468f856b87b44c96a2ab39dae98
parent598eb2e2daac5d2338b9788814e45bb5b2c16e61 (diff)
parent3953f7ab81f4edd540ab66fe25ebec56dc9c7ebc (diff)
Merge branch 'master' into hashdirlower
-rw-r--r--doc/todo/add_-all_option.mdwn16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/todo/add_-all_option.mdwn b/doc/todo/add_-all_option.mdwn
new file mode 100644
index 000000000..cb4722fa7
--- /dev/null
+++ b/doc/todo/add_-all_option.mdwn
@@ -0,0 +1,16 @@
+`--all` would make git-annex operate on either every key with content
+present (or in some cases like `get` and `copy --from` on
+every keys with content not present).
+
+This would be useful when a repository has a history with deleted files
+whose content you want to keep (so you're not using `dropunused`).
+Or when you have a lot of branches and just want to be able to fsck
+every file referenced in any branch.
+
+A problem with the idea is that `.gitattributes` values for keys not
+currently in the tree would not be available (without horrific anounts of
+grubbing thru history to find where/when the key used to exist). So
+`numcopies` set via `.gitattributes` would not work. This would be a
+particular problem for `drop` and for `--auto`.
+
+--[[Joey]]