From 80f1d316f56730d8aba25b9ca3afbebc6fff1bd9 Mon Sep 17 00:00:00 2001 From: "robert.schuetz@7942237bf71a2ae4f5d3cb047d167612b8c9e311" Date: Tue, 7 Nov 2017 19:14:18 +0000 Subject: [PATCH 1/2] Added a comment --- ...mment_2_ddede3236f1d91ac4f0117b76267a021._comment | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 doc/forum/Remote_listed_in_whereis_but_not_in_info/comment_2_ddede3236f1d91ac4f0117b76267a021._comment diff --git a/doc/forum/Remote_listed_in_whereis_but_not_in_info/comment_2_ddede3236f1d91ac4f0117b76267a021._comment b/doc/forum/Remote_listed_in_whereis_but_not_in_info/comment_2_ddede3236f1d91ac4f0117b76267a021._comment new file mode 100644 index 0000000000..736f98ef6a --- /dev/null +++ b/doc/forum/Remote_listed_in_whereis_but_not_in_info/comment_2_ddede3236f1d91ac4f0117b76267a021._comment @@ -0,0 +1,12 @@ +[[!comment format=mdwn + username="robert.schuetz@7942237bf71a2ae4f5d3cb047d167612b8c9e311" + nickname="robert.schuetz" + avatar="http://cdn.libravatar.org/avatar/89879460a9e84b9c736d982d9489d3d9" + subject="comment 2" + date="2017-11-07T19:14:18Z" + content=""" +Surprisingly, I can't use the UUID: + + $ git annex dead 8bb266ed-453d-4489-9d8a-de38b2bc77c2 + dead 8bb266ed-453d-4489-9d8a-de38b2bc77c2 git-annex: there is no available git remote named \"8bb266ed-453d-4489-9d8a-de38b2bc77c2\" +"""]] From 54404bcd6fdf25db6ccdc4ddaaa19ad07f3026b8 Mon Sep 17 00:00:00 2001 From: webanck Date: Tue, 7 Nov 2017 19:16:09 +0000 Subject: [PATCH 2/2] Added a comment: reply to comment 1 --- ..._74f3520d5eaecea35e52f3ffc2bbc559._comment | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 doc/bugs/Massive_git_add_produces_sqlite_crashes/comment_2_74f3520d5eaecea35e52f3ffc2bbc559._comment diff --git a/doc/bugs/Massive_git_add_produces_sqlite_crashes/comment_2_74f3520d5eaecea35e52f3ffc2bbc559._comment b/doc/bugs/Massive_git_add_produces_sqlite_crashes/comment_2_74f3520d5eaecea35e52f3ffc2bbc559._comment new file mode 100644 index 0000000000..8b00153de4 --- /dev/null +++ b/doc/bugs/Massive_git_add_produces_sqlite_crashes/comment_2_74f3520d5eaecea35e52f3ffc2bbc559._comment @@ -0,0 +1,31 @@ +[[!comment format=mdwn + username="webanck" + avatar="http://cdn.libravatar.org/avatar/cd273f76ef8c4218510b4f50ef7e1f3d" + subject="reply to comment 1" + date="2017-11-07T19:16:08Z" + content=""" +Hello joey, and thanks for the quick answer, I am honored ! +It's refreshing to enter an active community :) + +About the usage of \"bash on Windows\", well, git-annex had too many problems, especially with the symlinks, until the recent \"Windows 10 Fall Creators Update\". +Now it goes pretty well. + +My main concern for the moment is the symlinks created in the \"bash\" can't be used by windows whereas symlinks created in windows can be used in \"bash\". +Thus working in an annexed directory with Windows programs needs to unlock files. One note though, I didn't try with hardlinks. + +About the v6. I just figured that some minutes ago and, following , created a .gitattributes file. + + *.txt annex.largefiles=nothing + +It works better now. + +About the smudge/sqlite errors. I encountered those only after a big number of adds. +I even managed to add all my files eventually with a little loop ignoring the errors (for 1000 files): + + for i in {1..10} + do + git add $(git ls-files --others | grep txt | head -100) 2> /dev/null + done + + +"""]]