diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-15 19:23:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-15 19:23:24 -0400 |
commit | f62f9d3ab98bf5f7ec3e2cfb8fea2f748542e7be (patch) | |
tree | d2dd6bea6ceeed504ba7a04e461133624e5c1dba /doc/devblog | |
parent | 95d70575e71f519a9cea319fa77bb68aa18fc495 (diff) |
blog
Diffstat (limited to 'doc/devblog')
-rw-r--r-- | doc/devblog/day_10__lazy_Sunday.mdwn | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/devblog/day_10__lazy_Sunday.mdwn b/doc/devblog/day_10__lazy_Sunday.mdwn new file mode 100644 index 000000000..aa6a70918 --- /dev/null +++ b/doc/devblog/day_10__lazy_Sunday.mdwn @@ -0,0 +1,23 @@ +Fixed a typo that broke automatic youtube video support in `addurl`. + +---- + +Now there's an easy way to get an overview of how close your repository +is to meeting the configured numcopies settings (or when it exceeds them). + +<pre> +# time git annex status . +[...] +numcopies stats: + numcopies +0: 6686 + numcopies +1: 3793 + numcopies +3: 3156 + numcopies +2: 2743 + numcopies -1: 1242 + numcopies -4: 1098 + numcopies -3: 1009 + numcopies +4: 372 +</pre> + +This does make `git annex status` slow when run on a large directory tree, +so --fast disables that. |