summaryrefslogtreecommitdiff
path: root/doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn')
-rw-r--r--doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn b/doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn
deleted file mode 100644
index 6bbfd7a4d..000000000
--- a/doc/todo/whishlist:_git_annex_drop_--dry-run.mdwn
+++ /dev/null
@@ -1,5 +0,0 @@
-It'd be useful to be able to see what `git annex drop` would do *before* asking it to drop any files.
-
-For example, I just set up my preferred contents expressions, and I don't know if I got them right. Before dropping anything from this repo, it'd be nice to check what would happen. I know git annex drop will only drop files that are above their minimum numcopies, but I'd still like to avoid heavyweight copying in case I got my preferred contents expressions wrong.
-
-> [[done]]; added --want-get and --want-drop. --[[Joey]]