From 2946fd5ebf5ba05719aa801de24ccea4dfbdc1ae Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawkbpbjP5j8MqWt_K4NASwv0WvB8T4rQ-pM" Date: Wed, 6 Nov 2013 18:40:19 +0000 Subject: [PATCH 1/7] --- ...een_git_annex_add_and_git_annex_watch.mdwn | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 doc/bugs/Discrepancy_between_git_annex_add_and_git_annex_watch.mdwn diff --git a/doc/bugs/Discrepancy_between_git_annex_add_and_git_annex_watch.mdwn b/doc/bugs/Discrepancy_between_git_annex_add_and_git_annex_watch.mdwn new file mode 100644 index 0000000000..611a3d6116 --- /dev/null +++ b/doc/bugs/Discrepancy_between_git_annex_add_and_git_annex_watch.mdwn @@ -0,0 +1,31 @@ +### Please describe the problem. + +`git annex add` does not add dotfiles (as per the man page) while `git annex watch` does (nothing on the man page). It's not a bug, but rather a surprise (at least to me). + +### What steps will reproduce the problem? + +[[!format sh """ +git init dotfiles +cd dotfiles +git annex init "my dotfiles" +echo test > test.txt +echo dottest > .dotest.txt +git annex add +git commit -a -m "initial dots" +git annex whereis .dotest.txt # no answer, as expected +git annex watch +git annex whereis .dotest.txt # answers that .dotest.txt is here +"""]] + +### What version of git-annex are you using? On what operating system? +git-annex version: 4.20131101, ubuntu 12.04 with all updates. + +### Please provide any additional information below. + +[[!format sh """ +# If you can, paste a complete transcript of the problem occurring here. +# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log + + +# End of transcript or log. +"""]] From 3a26df0028d4edb8758e85b097daa3b53d44f07a Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:47:01 +0000 Subject: [PATCH 2/7] --- .../GPG_errors_under_OS_10.9_Mavericks.mdwn | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn diff --git a/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn b/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn new file mode 100644 index 0000000000..5175c5e85d --- /dev/null +++ b/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn @@ -0,0 +1,24 @@ +### Please describe the problem. + +Creating a remote S3 repository using the git-annex assistant web interface fails with a GPG error. (I'm also getting a GPG error trying to create a USB repo but it's slightly different so I'll post a different bug.) + +### What steps will reproduce the problem? + +Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 +Create local repo +Try to create S3 remote repo + +### What version of git-annex are you using? On what operating system? + +git-annex version 4.20131105-g136b030 on MacOS 10.9 Mavericks. + +### Please provide any additional information below. + +[[!format sh """ + +(encryption setup) dyld: Library not loaded: @rpath/libz.1.2.8.dylib + Referenced from: /Applications/git-annex.app/Contents/MacOS/bundle/gpg + Reason: image not found +07/Nov/2013:06:38:27 +1100 [Error#yesod-core] user error (gpg ["--batch","--no-tty","--use-agent","--quiet","--trust-model","always","--gen-random","--armor","1","512"] exited 5) @(yesod-core-1.2.4.5:Yesod.Core.Class.Yesod ./Yesod/Core/Class/Yesod.hs:485:5) + +"""]] From e1c7dd4a957e6ea1fbe292bb63a12f12ed189e69 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:49:51 +0000 Subject: [PATCH 3/7] --- doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn b/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn index 5175c5e85d..7f6345f963 100644 --- a/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn +++ b/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn @@ -4,9 +4,9 @@ Creating a remote S3 repository using the git-annex assistant web interface fail ### What steps will reproduce the problem? -Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 -Create local repo -Try to create S3 remote repo + * Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 + * Create local repo + * Try to create encrypted S3 remote repo ### What version of git-annex are you using? On what operating system? From 4722fa5e7a1bf437806d31a34cdccbeefdb24135 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:52:54 +0000 Subject: [PATCH 4/7] rename bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn to bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn --- ...9_Mavericks.mdwn => Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename doc/bugs/{GPG_errors_under_OS_10.9_Mavericks.mdwn => Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn} (100%) diff --git a/doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn b/doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn similarity index 100% rename from doc/bugs/GPG_errors_under_OS_10.9_Mavericks.mdwn rename to doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn From eaeae91988609a9331e9c5afc9c5f7d7c10e5aae Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:54:25 +0000 Subject: [PATCH 5/7] --- ..._10.9_GPG_erro_when_creating_USB_repo.mdwn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn diff --git a/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn b/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn new file mode 100644 index 0000000000..393c6558ac --- /dev/null +++ b/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn @@ -0,0 +1,19 @@ +### Please describe the problem. + +Creating a USB repo fails with a GPG error. + +### What steps will reproduce the problem? + + * Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 + * Create local repo + * Try to create USB repo + +### What version of git-annex are you using? On what operating system? + +git-annex version 4.20131105-g136b030 on MacOS 10.9 Mavericks. + +### Please provide any additional information below. + +[[!format sh """ +07/Nov/2013:06:51:07 +1100 [Error#yesod-core] user error (gpg ["--batch","--no-tty","--use-agent","--quiet","--trust-model","always","--with-colons","--list-secret-keys","--fixed-list-mode"] exited 5) @(yesod-core-1.2.4.5:Yesod.Core.Class.Yesod ./Yesod/Core/Class/Yesod.hs:485:5) +"""]] From 41ed969110a690becc7550da3d023c314812124c Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:57:47 +0000 Subject: [PATCH 6/7] --- doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn b/doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn index 7f6345f963..a087370402 100644 --- a/doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn +++ b/doc/bugs/Mac_OS_10.9_GPG_error_adding_S3_repo.mdwn @@ -5,8 +5,9 @@ Creating a remote S3 repository using the git-annex assistant web interface fail ### What steps will reproduce the problem? * Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 - * Create local repo - * Try to create encrypted S3 remote repo + * Run git-annex app to launch web interface + * Create local repo using web interface + * Try to create encrypted S3 remote repo using web interface ### What version of git-annex are you using? On what operating system? From 4fe4ce354a37725b3a71ae429a28e7c366c5c953 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawmZgZuUhZlHpd_AbbcixY0QQiutb2I7GWY" Date: Wed, 6 Nov 2013 19:58:30 +0000 Subject: [PATCH 7/7] --- doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn b/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn index 393c6558ac..b217b0a3ea 100644 --- a/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn +++ b/doc/bugs/Mac_OS_10.9_GPG_erro_when_creating_USB_repo.mdwn @@ -5,12 +5,13 @@ Creating a USB repo fails with a GPG error. ### What steps will reproduce the problem? * Build git-annex and git-annex assistant using the instructions at https://gist.github.com/calmyournerves/7144127 - * Create local repo - * Try to create USB repo + * Run git-annex app to launch web interface + * Create local repo using web interface + * Try to create USB repo using web interface ### What version of git-annex are you using? On what operating system? -git-annex version 4.20131105-g136b030 on MacOS 10.9 Mavericks. +git-annex version 4.20131105-g136b030 on Mac OS 10.9 Mavericks. ### Please provide any additional information below.