diff --git a/doc/bugs/indeterminite_preferred_content_state_for_duplicated_file/comment_15_feb18c6e8be6d4cf3c1730f451531787._comment b/doc/bugs/indeterminite_preferred_content_state_for_duplicated_file/comment_15_feb18c6e8be6d4cf3c1730f451531787._comment new file mode 100644 index 0000000000..fc9667ee0c --- /dev/null +++ b/doc/bugs/indeterminite_preferred_content_state_for_duplicated_file/comment_15_feb18c6e8be6d4cf3c1730f451531787._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="Ilya_Shlyakhter" + avatar="http://cdn.libravatar.org/avatar/1647044369aa7747829c38b9dcc84df0" + subject="clarifying preferred content expressions" + date="2021-05-30T19:40:50Z" + content=""" +Thanks Joey for clarifying. \"Preferred content only relates to the currently checked out branch\" -- what about repos with no \"currently checked out branch\", e.g. bare repos or special remotes, or those with more than one checked out branch (using [[git-worktree|tips/Using_git-worktree_with_annex]])? I had thought that e.g. setting the required content setting of an S3 special remote to `anything` would ensure that it gets a copy of every file ever annexed, but sounds like that might not be true. +"""]] diff --git a/doc/forum/browse_files_on_server.mdwn b/doc/forum/browse_files_on_server.mdwn new file mode 100644 index 0000000000..1e96f08a04 --- /dev/null +++ b/doc/forum/browse_files_on_server.mdwn @@ -0,0 +1 @@ +Hi. I have a local repository on my computer and a transfer repository on my server. When I ssh into the server, I see the git repo, but none of the files. Is there a way to browse my files in the transfer repository? diff --git a/doc/forum/browse_files_on_server/comment_1_5023c6f9f4a8a7724ff057076f64ec1d._comment b/doc/forum/browse_files_on_server/comment_1_5023c6f9f4a8a7724ff057076f64ec1d._comment new file mode 100644 index 0000000000..55d162e134 --- /dev/null +++ b/doc/forum/browse_files_on_server/comment_1_5023c6f9f4a8a7724ff057076f64ec1d._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="Lukey" + avatar="http://cdn.libravatar.org/avatar/c7c08e2efd29c692cc017c4a4ca3406b" + subject="comment 1" + date="2021-05-29T13:40:04Z" + content=""" +You have to run `git annex sync` on the server too. +"""]] diff --git a/doc/forum/browse_files_on_server/comment_2_67096b34041fed07bbf1d0cb243e1efc._comment b/doc/forum/browse_files_on_server/comment_2_67096b34041fed07bbf1d0cb243e1efc._comment new file mode 100644 index 0000000000..3f4e672b91 --- /dev/null +++ b/doc/forum/browse_files_on_server/comment_2_67096b34041fed07bbf1d0cb243e1efc._comment @@ -0,0 +1,15 @@ +[[!comment format=mdwn + username="frodo" + avatar="http://cdn.libravatar.org/avatar/a647438d8bd49248b7e2cfe0ce3ecd4e" + subject="comment 2" + date="2021-05-29T13:51:50Z" + content=""" +I tried running that, and got the following output: + +% git annex sync +commit +fatal: this operation must be run in a work tree +ok + +I can see through the web interface that the clients have uploaded the files to the server. I just can't browse them. +"""]] diff --git a/doc/forum/browse_files_on_server/comment_3_148f1aa0d46dcf51b855b6fb18b6a549._comment b/doc/forum/browse_files_on_server/comment_3_148f1aa0d46dcf51b855b6fb18b6a549._comment new file mode 100644 index 0000000000..84fe921a95 --- /dev/null +++ b/doc/forum/browse_files_on_server/comment_3_148f1aa0d46dcf51b855b6fb18b6a549._comment @@ -0,0 +1,14 @@ +[[!comment format=mdwn + username="Lukey" + avatar="http://cdn.libravatar.org/avatar/c7c08e2efd29c692cc017c4a4ca3406b" + subject="comment 3" + date="2021-05-29T17:22:40Z" + content=""" +Then you have a bare git repo. You can convert it to a normal one like this: + + mkdir bla + mv bla.git bla/.git + cd bla + git config core.bare false + git checkout master +"""]] diff --git a/doc/forum/git-annex_s3_failure.mdwn b/doc/forum/git-annex_s3_failure.mdwn new file mode 100644 index 0000000000..dc93f5182e --- /dev/null +++ b/doc/forum/git-annex_s3_failure.mdwn @@ -0,0 +1,33 @@ +Hello, + +I have a repository that is set up to upload files to S3. + +I am testing the idea of fetching files by doing the following + +``` +mkdir tmp + +cd tmp + +git clone git@github.com:MyUserName/MyRepo.git + +git annex enableremote mys3 + +git annex get . + +``` + +I get error messages such as: + +``` +get files/a-tutorial-on-the-universality-and-expressiveness-of-fold.pdf (not available) + Maybe add some of these git remotes (git remote add ...): + 942f7e73-262b-4850-8a2b-ccb7c0e5666d -- + + (Note that these git remotes have annex-ignore set: origin) +failed +``` + +This happens even though the S3 environmental variables are properly set. + +Thank you for your help! This program seems awesome - I just need to figure out how to use it. diff --git a/doc/forum/git-annex_s3_failure/comment_1_099023ae32a6a3417cc9c8bdcce9a89d._comment b/doc/forum/git-annex_s3_failure/comment_1_099023ae32a6a3417cc9c8bdcce9a89d._comment new file mode 100644 index 0000000000..25aa12efc0 --- /dev/null +++ b/doc/forum/git-annex_s3_failure/comment_1_099023ae32a6a3417cc9c8bdcce9a89d._comment @@ -0,0 +1,16 @@ +[[!comment format=mdwn + username="Steven" + avatar="http://cdn.libravatar.org/avatar/bc0cef8062401f1b84db320cb56c28bd" + subject="Using the --content flag" + date="2021-05-29T00:14:30Z" + content=""" +It seems like I had to use the following command: + +``` +git annex sync --content +``` + +After this, I saw all the files available. + +I expected `git annex get .` to do that, but I might simply have the wrong mental model of all of this. +"""]] diff --git a/doc/forum/git-annex_s3_failure/comment_2_c869b85bb2bea4a7a99e107f4a3cfb0f._comment b/doc/forum/git-annex_s3_failure/comment_2_c869b85bb2bea4a7a99e107f4a3cfb0f._comment new file mode 100644 index 0000000000..fbf870f414 --- /dev/null +++ b/doc/forum/git-annex_s3_failure/comment_2_c869b85bb2bea4a7a99e107f4a3cfb0f._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="Lukey" + avatar="http://cdn.libravatar.org/avatar/c7c08e2efd29c692cc017c4a4ca3406b" + subject="comment 2" + date="2021-05-29T12:40:56Z" + content=""" +It could be that you have files that are not actually present in the mys3 remote. `git annex sync --content` only gets files that are present in connected repos, so it doesn't report a error if it can't get a particular file. `git annex get .` want's to actually get all files and reports errors for the files it can't get. +"""]] diff --git a/doc/forum/git-annex_s3_failure/comment_3_b9e52fe4d14104398d57a6bcc7f2deaf._comment b/doc/forum/git-annex_s3_failure/comment_3_b9e52fe4d14104398d57a6bcc7f2deaf._comment new file mode 100644 index 0000000000..9c3c71bc5a --- /dev/null +++ b/doc/forum/git-annex_s3_failure/comment_3_b9e52fe4d14104398d57a6bcc7f2deaf._comment @@ -0,0 +1,10 @@ +[[!comment format=mdwn + username="Steven" + avatar="http://cdn.libravatar.org/avatar/bc0cef8062401f1b84db320cb56c28bd" + subject="comment 3" + date="2021-05-29T14:06:25Z" + content=""" +Interesting explanation. I am not sure what files it was trying to get that were not on s3. Everything I have done is with an eye towards having all of the files in s3, but it is always possible I got something wrong. + +Thank you. +"""]] diff --git a/doc/forum/slow_ikiwiki_server__63__.mdwn b/doc/forum/slow_ikiwiki_server__63__.mdwn new file mode 100644 index 0000000000..97197061ea --- /dev/null +++ b/doc/forum/slow_ikiwiki_server__63__.mdwn @@ -0,0 +1 @@ +The ikiwiki server hosting this forum seems to take much longer to finish posting a message/comment than it used to. Not a big deal, but wondering if anyone else has noticed this?