From cb820cb80d4a48ee7667845436476c1dc4b4c203 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawkWQXo7MLYIDa-ep04UTbdz8KuvfjwLDCQ" Date: Wed, 8 Jan 2014 22:06:17 +0000 Subject: [PATCH 1/4] --- doc/tips/do_not_use_git-annex_inside_your_Dropbox.mdwn | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 doc/tips/do_not_use_git-annex_inside_your_Dropbox.mdwn diff --git a/doc/tips/do_not_use_git-annex_inside_your_Dropbox.mdwn b/doc/tips/do_not_use_git-annex_inside_your_Dropbox.mdwn new file mode 100644 index 0000000000..2669903449 --- /dev/null +++ b/doc/tips/do_not_use_git-annex_inside_your_Dropbox.mdwn @@ -0,0 +1,5 @@ +Do not place git-annex enabled git repository inside your Dropbox folder! + +You will encounter broken symlinks and git-annex complaining about lost files. Dropbox [doesn't preserve case of file names](https://www.dropbox.com/help/145/en) and this breaks storage of annexed files (.git/annex/objects/). For possible recovery see . + + From fc581c7b5736bfd80e2d7542d6bd47beeafad92c Mon Sep 17 00:00:00 2001 From: "http://joeyh.name/" Date: Wed, 8 Jan 2014 22:06:35 +0000 Subject: [PATCH 2/4] Added a comment --- .../comment_1_fcf7e1089b25993378df7574ccee8062._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/bugs/amd64_i386_standalone:_no_SKEIN/comment_1_fcf7e1089b25993378df7574ccee8062._comment diff --git a/doc/bugs/amd64_i386_standalone:_no_SKEIN/comment_1_fcf7e1089b25993378df7574ccee8062._comment b/doc/bugs/amd64_i386_standalone:_no_SKEIN/comment_1_fcf7e1089b25993378df7574ccee8062._comment new file mode 100644 index 0000000000..c725acd62f --- /dev/null +++ b/doc/bugs/amd64_i386_standalone:_no_SKEIN/comment_1_fcf7e1089b25993378df7574ccee8062._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="209.250.56.43" + subject="comment 1" + date="2014-01-08T22:06:35Z" + content=""" +Those builds are done on Debian stable for portability reasons, and it has too old a version of haskell-cryptohash for SKEIN. +"""]] From a17229a17ec6b6debefdd155b4cf71d140db6a54 Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawkWQXo7MLYIDa-ep04UTbdz8KuvfjwLDCQ" Date: Wed, 8 Jan 2014 22:11:34 +0000 Subject: [PATCH 3/4] Added a comment --- .../comment_2_fe852adc1d7d3062ace269ceb134f3ad._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/bugs/interference_with_Dropbox_results_in_data_loss/comment_2_fe852adc1d7d3062ace269ceb134f3ad._comment diff --git a/doc/bugs/interference_with_Dropbox_results_in_data_loss/comment_2_fe852adc1d7d3062ace269ceb134f3ad._comment b/doc/bugs/interference_with_Dropbox_results_in_data_loss/comment_2_fe852adc1d7d3062ace269ceb134f3ad._comment new file mode 100644 index 0000000000..475e1dc0a7 --- /dev/null +++ b/doc/bugs/interference_with_Dropbox_results_in_data_loss/comment_2_fe852adc1d7d3062ace269ceb134f3ad._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawkWQXo7MLYIDa-ep04UTbdz8KuvfjwLDCQ" + nickname="Matěj" + subject="comment 2" + date="2014-01-08T22:11:34Z" + content=""" +I understand, it's not git-annex fail. I added at least a tip with a warning here: [[tips/do not use git-annex inside your Dropbox]]. +"""]] From 48bf3ec4f689466d7221bf411d68907cd30a46bc Mon Sep 17 00:00:00 2001 From: "https://www.google.com/accounts/o8/id?id=AItOawlgyVag95OnpvSzQofjyX0WjW__MOMKsl0" Date: Wed, 8 Jan 2014 22:50:43 +0000 Subject: [PATCH 4/4] --- ...annex_satisfy__95__num__95__copies__34___command.mdwn | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn diff --git a/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn b/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn new file mode 100644 index 0000000000..20046785ad --- /dev/null +++ b/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn @@ -0,0 +1,9 @@ +Please provide a command that basically performs something like: + +git get --auto +for i in `git remote`; do git copy -to $i --auto; done + + +The use case is this: +I have a very large repo (300.000 files) in three places. Now I want the fastest possible way to ensure, that every file exists in annex.numcopies. This should scan every file one time and then get it or copy it to other repos as needed. Right now, I make one "git annex get --auto" in every repo, which is is a waste of time, since most of the files never change anyway! +