From 35f58a3afd2f48ec68c69bc8abf8c73d40b8a9e4 Mon Sep 17 00:00:00 2001 From: "http://joeyh.name/" Date: Tue, 23 Apr 2013 23:04:13 +0000 Subject: [PATCH] Added a comment: you win at highlighting logs! --- ..._dd202a7764d9df998868d595a86ffb21._comment | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doc/bugs/call_to_git-annex-shell_when_on_centralised___40__non-git-annex__41___repository/comment_1_dd202a7764d9df998868d595a86ffb21._comment diff --git a/doc/bugs/call_to_git-annex-shell_when_on_centralised___40__non-git-annex__41___repository/comment_1_dd202a7764d9df998868d595a86ffb21._comment b/doc/bugs/call_to_git-annex-shell_when_on_centralised___40__non-git-annex__41___repository/comment_1_dd202a7764d9df998868d595a86ffb21._comment new file mode 100644 index 0000000000..50a133ac8e --- /dev/null +++ b/doc/bugs/call_to_git-annex-shell_when_on_centralised___40__non-git-annex__41___repository/comment_1_dd202a7764d9df998868d595a86ffb21._comment @@ -0,0 +1,30 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + nickname="joey" + subject="you win at highlighting logs!" + date="2013-04-23T23:04:13Z" + content=""" +This weird message is coming from whatever equivilant bitbucket has of a login shell. + +I'd expect you would only see the message once. When git-annex notices it cannot run git-annex-shell on the remote, it automatically sets `remote.bitbucket.annex-ignore`. Once that is set, it will not try again to send/receive files from the remote. But due to the recent change I made, will still git push/pull to it. + +I don't see anything unexpected in the logs.. What would be unexpected is if `remote.bitbucket.annex-ignore` is set, and it tries to do this again next time it syncs. Or if `remote.bitbucket.annex-ignore` is not set to true in `.git/config`. + +Here is an example of how it's supposed to work: + +
+joey@gnu:~/tmp/rr>git annex sync
+fatal: unrecognized command 'git-annex-shell 'configlist' '/~/test.git''
+
+  Remote origin does not have git-annex installed; setting remote.origin.annex-ignore
+commit  
+ok
+
+joey@gnu:~/tmp/rr>git config remote.origin.annex-ignore 
+true
+
+joey@gnu:~/tmp/rr>git annex sync
+commit  
+ok
+
+"""]]