summaryrefslogtreecommitdiff
path: root/doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-03-12 12:57:18 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-03-12 12:57:18 -0400
commitca10c06819aacc50d4423836ce51fc4486803789 (patch)
treee96072aef36f12d28d715fd4b7396d3fea4eef4c /doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn
parent024dd384140b25f69defd762e41fd5e4af4f3567 (diff)
rename files containing :
This is mostly to let the repo check out on windows w/o using cygwin's git. But, bash completion is also crap with : , so ..
Diffstat (limited to 'doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn')
-rw-r--r--doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn44
1 files changed, 0 insertions, 44 deletions
diff --git a/doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn b/doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn
deleted file mode 100644
index ac29c169f..000000000
--- a/doc/todo/wishlist:_git_annex_info_._also_return_numcopies_setting.mdwn
+++ /dev/null
@@ -1,44 +0,0 @@
-The stats produced by `git annex info .` are nice but I often find myself separately looking up the actual numcopies set value. Can this also be included in the report please?
-
-> There is not necessarily one single numcopies setting; gitattributes
-> can configure different numcopies for different files.
->
-> The numcopies stats in the report are reported as plus or
-> minus relative to the numcopies setting. Using a relative number like
-> that, it can eliminate the complexity of which files have which
-> numcompies setting.
-
-<pre>
-numcopies stats:
- numcopies +0: 27
- numcopies +1: 43
- numcopies +2: 1
-</pre>
-
-> What could be added is a summary of the absolute number of copies
-> that exist of files, without taking the numcopies configuration
-> into account.
-
-<pre>
-absolute number of copies:
- 1 copy: 47
- 2 copies: 23
- 3 copies: 1
-</pre>
-
-> It turns out you can already get this display though!
-> Just use `git annex info . --numcopies=0`.
-
-<pre>
-numcopies stats:
- numcopies +1: 47
- numcopies +2: 23
- numcopies +3: 1
-</pre>
-
-> So, in this mode, it's showing the number of copies that exist of files,
-> relative to numcopies, which is forced to be 0. So, there are 47 files
-> with 1 copy, 23 with 2 copies, and 1 with 3 copies.
->
-> I think I've convinced myself no changes need to be made! [[done]]
-> --[[Joey]]