From 082ae2083c52ba0b41f607476fabe71780c7290d Mon Sep 17 00:00:00 2001 From: "frost.kristian@75a6b6a25121f985cd8708f98c691d41716ac720" Date: Mon, 21 Dec 2015 17:47:13 +0000 Subject: [PATCH 1/2] Added a comment --- ...comment_4_72b6c28d8a4865ad8c84b1f7dfefb78a._comment | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 doc/forum/Purge_whereis/comment_4_72b6c28d8a4865ad8c84b1f7dfefb78a._comment diff --git a/doc/forum/Purge_whereis/comment_4_72b6c28d8a4865ad8c84b1f7dfefb78a._comment b/doc/forum/Purge_whereis/comment_4_72b6c28d8a4865ad8c84b1f7dfefb78a._comment new file mode 100644 index 0000000000..0e0cab11ce --- /dev/null +++ b/doc/forum/Purge_whereis/comment_4_72b6c28d8a4865ad8c84b1f7dfefb78a._comment @@ -0,0 +1,10 @@ +[[!comment format=mdwn + username="frost.kristian@75a6b6a25121f985cd8708f98c691d41716ac720" + nickname="frost.kristian" + subject="comment 4" + date="2015-12-21T17:47:13Z" + content=""" +I did some digging. When creating a repo from the webapp, it is per default in direct mode. In direct mode, I am not able to run any git commands such as git commit. Subsequently, when running git annex sync. Files added when sync is disabled from the webapp are not committed. + +Is git-annex behaving as expected here? +"""]] From 24419103f32ae953170d7f96d3ec2c0c8220b8dc Mon Sep 17 00:00:00 2001 From: "https://me.yahoo.com/a/EbvxpTI_xP9Aod7Mg4cwGhgjrCrdM5s-#7c0f4" Date: Mon, 21 Dec 2015 19:50:38 +0000 Subject: [PATCH 2/2] --- ...ackend_usage_stats_as_a_list_of_lists.mdwn | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn diff --git a/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn b/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn new file mode 100644 index 0000000000..8d9fa8c99e --- /dev/null +++ b/doc/bugs/info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn @@ -0,0 +1,32 @@ +### What version of git-annex are you using? On what operating system? + +5.20151116+gitg5416a1a-1~ndall+1 + +### Please provide any additional information below. + +[[!format sh """ + "backend usage": [ + [ + "MD5E", + 2 + ], + [ + "SHA256E", + 2 + ] + ], +"""]] + +instead of more logical + +[[!format sh """ + + "backend usage": { + "MD5E": 2, + "SHA256E": 2 + } +"""]] + +also it seems it just doubles them since I have only 2 files, 1 for each backend (as reported also by info "local annex keys": 2). + +[[!meta author=yoh]]