From 29517939055bf481b35ea9e20ef0b6eee1b91603 Mon Sep 17 00:00:00 2001 From: Ilya_Shlyakhter Date: Wed, 13 Mar 2019 17:54:52 +0000 Subject: [PATCH 01/11] added bug report where git worktree remove fails --- doc/bugs/git_worktree_remove_fails.mdwn | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/bugs/git_worktree_remove_fails.mdwn diff --git a/doc/bugs/git_worktree_remove_fails.mdwn b/doc/bugs/git_worktree_remove_fails.mdwn new file mode 100644 index 0000000000..d4c2e660fb --- /dev/null +++ b/doc/bugs/git_worktree_remove_fails.mdwn @@ -0,0 +1 @@ +"git worktree remove" fails if git-annex has operated on the worktree, because git expects .git in a worktree to be a file, while git-annex changes it to a symlink ([[tips/Using_git-worktree_with_annex/]]). Also, git-annex-test does not currently seem to test git-annex operation on worktrees added by git-worktree? From 04acb0308a2e8f0e5c3ab5e80e698b36a7af4a6d Mon Sep 17 00:00:00 2001 From: spwhitton Date: Wed, 13 Mar 2019 17:55:03 +0000 Subject: [PATCH 02/11] post question --- ...Checking_that_everything_is_committed.mdwn | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 doc/forum/Checking_that_everything_is_committed.mdwn diff --git a/doc/forum/Checking_that_everything_is_committed.mdwn b/doc/forum/Checking_that_everything_is_committed.mdwn new file mode 100644 index 0000000000..7b2e06f1a3 --- /dev/null +++ b/doc/forum/Checking_that_everything_is_committed.mdwn @@ -0,0 +1,30 @@ +I use this to check that git repos have nothing untracked: + + # 1st command: check index against HEAD + # 2nd command: check working tree against index + # 3rd command: check for untracked files + # 4th command: check for stashes + git diff-index --quiet --cached HEAD \ + && git diff-files --quiet \ + && test -z "$(git status --porcelain)" \ + && test -z "$(git stash list)" + +The call to git-diff-files(1) fails in a v7 repo with output like this (if I drop the `--quiet`): + + spwhitton@iris:~/lib/athena-apt>git diff-files + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/buster-backports/main/binary-amd64/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/buster-backports/main/binary-i386/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/buster/main/binary-amd64/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/buster/main/binary-i386/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/rc-buggy/main/binary-amd64/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/rc-buggy/main/binary-i386/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/sid/main/binary-amd64/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/sid/main/binary-i386/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/stretch/main/binary-amd64/Packages + :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/stretch/main/binary-i386/Packages + +Is there a git-annex command that I can run to normalise my repo so that git-diff-files(1) produces no output? Or does it not make sense to run git-diff-files(1) in a v7 repo? + +Thanks. + +--spwhitton From 1812ec5dabae25c5fde74054b3b30367756a2279 Mon Sep 17 00:00:00 2001 From: spwhitton Date: Wed, 13 Mar 2019 18:15:08 +0000 Subject: [PATCH 03/11] more info --- doc/forum/Checking_that_everything_is_committed.mdwn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/forum/Checking_that_everything_is_committed.mdwn b/doc/forum/Checking_that_everything_is_committed.mdwn index 7b2e06f1a3..7f492fc5ab 100644 --- a/doc/forum/Checking_that_everything_is_committed.mdwn +++ b/doc/forum/Checking_that_everything_is_committed.mdwn @@ -23,6 +23,8 @@ The call to git-diff-files(1) fails in a v7 repo with output like this (if I dro :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/stretch/main/binary-amd64/Packages :100644 100644 f8e47b9532ea17ac825c39bddc35dbd68f120a46 0000000000000000000000000000000000000000 M dists/stretch/main/binary-i386/Packages +I note that the listed files are empty. + Is there a git-annex command that I can run to normalise my repo so that git-diff-files(1) produces no output? Or does it not make sense to run git-diff-files(1) in a v7 repo? Thanks. From e5923524f4b3e5a6d8bc788320bf584633e756de Mon Sep 17 00:00:00 2001 From: "michelleaugud@9066f1a87c39514d1a75cd2f2bad842dccd7e0d4" Date: Thu, 14 Mar 2019 11:51:13 +0000 Subject: [PATCH 04/11] Added a comment: Now git-annex can be used on Android! --- ...comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment diff --git a/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment b/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment new file mode 100644 index 0000000000..e7195e3714 --- /dev/null +++ b/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment @@ -0,0 +1,10 @@ +[[!comment format=mdwn + username="michelleaugud@9066f1a87c39514d1a75cd2f2bad842dccd7e0d4" + nickname="michelleaugud" + avatar="http://cdn.libravatar.org/avatar/675155fd784fe71999ae288f2f580a26" + subject="Now git-annex can be used on Android!" + date="2019-03-14T11:51:13Z" + content=""" +I would appreciate if you could advice some actions to me, to resolve my AOL Mail Forgot Password issue. +Visit to more:- http://www.aolsupport247.com/aol-forgot-password/ +"""]] From 2d6a364d4beaa4799aa67cc0b8598d703ac01e05 Mon Sep 17 00:00:00 2001 From: CandyAngel Date: Thu, 14 Mar 2019 12:02:41 +0000 Subject: [PATCH 05/11] removed --- ...comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment diff --git a/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment b/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment deleted file mode 100644 index e7195e3714..0000000000 --- a/doc/install/Android/comment_1_29a9a6e078c1a4e0d9e4ba565cca80a0._comment +++ /dev/null @@ -1,10 +0,0 @@ -[[!comment format=mdwn - username="michelleaugud@9066f1a87c39514d1a75cd2f2bad842dccd7e0d4" - nickname="michelleaugud" - avatar="http://cdn.libravatar.org/avatar/675155fd784fe71999ae288f2f580a26" - subject="Now git-annex can be used on Android!" - date="2019-03-14T11:51:13Z" - content=""" -I would appreciate if you could advice some actions to me, to resolve my AOL Mail Forgot Password issue. -Visit to more:- http://www.aolsupport247.com/aol-forgot-password/ -"""]] From 27c96d9b7096a2dbdd9af55225c4e201b9e737a9 Mon Sep 17 00:00:00 2001 From: sameerds Date: Sat, 16 Mar 2019 10:07:09 +0000 Subject: [PATCH 06/11] Added a comment: did not work for me --- .../comment_2_2437e95397e1b06ade5360405e399591._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/tips/splitting_a_repository/comment_2_2437e95397e1b06ade5360405e399591._comment diff --git a/doc/tips/splitting_a_repository/comment_2_2437e95397e1b06ade5360405e399591._comment b/doc/tips/splitting_a_repository/comment_2_2437e95397e1b06ade5360405e399591._comment new file mode 100644 index 0000000000..9da0c3d200 --- /dev/null +++ b/doc/tips/splitting_a_repository/comment_2_2437e95397e1b06ade5360405e399591._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="sameerds" + avatar="http://cdn.libravatar.org/avatar/b6d36a03115d3ececaafe16e327e9e27" + subject="did not work for me" + date="2019-03-16T10:07:09Z" + content=""" +I tried this on a version 7 repo, and nothing happened. The \"git annex fsck --fast\" returned immediately. Is there any git stuff missing in the above instructions? I would expect that we should at least setup the refs correctly and check out a working directory, right? +"""]] From 0ca577f93236878cd0c30e6bf68843338d58f36f Mon Sep 17 00:00:00 2001 From: "6yearold@36d59212c29d2959d6532d6db7928f01541bcf83" <6yearold@web> Date: Sat, 16 Mar 2019 17:41:44 +0000 Subject: [PATCH 07/11] --- doc/bugs/Make_Setup.hs_work_for_cabal_new-build.mdwn | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 doc/bugs/Make_Setup.hs_work_for_cabal_new-build.mdwn diff --git a/doc/bugs/Make_Setup.hs_work_for_cabal_new-build.mdwn b/doc/bugs/Make_Setup.hs_work_for_cabal_new-build.mdwn new file mode 100644 index 0000000000..8b458d493f --- /dev/null +++ b/doc/bugs/Make_Setup.hs_work_for_cabal_new-build.mdwn @@ -0,0 +1,3 @@ +git-annex uses copyHook in Setup.hs to create/install man pages, .desktop file and etc. + +I'm using cabal new-build/new-install to install it, and these copyHooks don't get called. I reported it to Cabal, but they replied that this should be fixed on git-annex side: https://github.com/haskell/cabal/issues/5933 From a303327295a8ccd578bfab226d4e23c7707c7a8c Mon Sep 17 00:00:00 2001 From: "jamie@b5676b90eec0401ca8faac7c972eaf5676891601" Date: Sat, 16 Mar 2019 22:13:49 +0000 Subject: [PATCH 08/11] --- ...git_annex_hanging_in_smudge_on_2k_file_on_rpi.mdwn | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi.mdwn diff --git a/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi.mdwn b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi.mdwn new file mode 100644 index 0000000000..ccdbfbc7fe --- /dev/null +++ b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi.mdwn @@ -0,0 +1,11 @@ +Ok, so I just set up git-annex on by Raspberry Pi 3 B (from apt from the raspbian repos), and got it working with a phone backup workflow. (udev automation, the specifics are in [a gist](https://gist.github.com/astronouth7303/624b499d213e607617187fee6a190ed1), but I don't think I'm doing anything super weird?) + +I'm encountering a problem where it apparently just spins at 100% CPU on a small text file. + +The command that's hanging is `git-annex smudge --clean sdcard/Android/data/ccc71.bmw/support/crash_reports.txt` + +This has happened on this file from both `git annex add` and `git annex sync` (with and without `--content`). + +The file itself is 2006B in size, and just contains some plaintext information (some header-type data and a java backtrace). But this process has been running for over an hour, and it's taken exceptionally long before. + +This seems really abnormal? The repo is 8.7GB overall, and it's running on an RPi from a microSD card, but taking hours to perform repository operations seem off. From 860d2c38c26f93336859daccd4f66ac294fd69e4 Mon Sep 17 00:00:00 2001 From: "jamie@b5676b90eec0401ca8faac7c972eaf5676891601" Date: Sat, 16 Mar 2019 22:17:37 +0000 Subject: [PATCH 09/11] Added a comment: strace --- ..._06b5d0c9c6037ffdafab6c01763061de._comment | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_1_06b5d0c9c6037ffdafab6c01763061de._comment diff --git a/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_1_06b5d0c9c6037ffdafab6c01763061de._comment b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_1_06b5d0c9c6037ffdafab6c01763061de._comment new file mode 100644 index 0000000000..8acdd27112 --- /dev/null +++ b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_1_06b5d0c9c6037ffdafab6c01763061de._comment @@ -0,0 +1,25 @@ +[[!comment format=mdwn + username="jamie@b5676b90eec0401ca8faac7c972eaf5676891601" + nickname="jamie" + avatar="http://cdn.libravatar.org/avatar/b9aa71e237c7bc49af04ec66194be8e0" + subject="strace" + date="2019-03-16T22:17:37Z" + content=""" +I attached strace, and it seems to be deadlocked? + +It just spews this continuously: + + --- SIGVTALRM {si_signo=SIGVTALRM, si_code=SI_TIMER, si_timerid=0, si_overrun=0, si_value={int=0, ptr=NULL}} --- + sigreturn({mask=[]}) = 84432420 + futex(0x5085624, FUTEX_WAIT_PRIVATE, 5795, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set) + --- SIGVTALRM {si_signo=SIGVTALRM, si_code=SI_TIMER, si_timerid=0, si_overrun=0, si_value={int=0, ptr=NULL}} --- + sigreturn({mask=[]}) = 84432420 + futex(0x5085624, FUTEX_WAIT_PRIVATE, 5795, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set) + --- SIGVTALRM {si_signo=SIGVTALRM, si_code=SI_TIMER, si_timerid=0, si_overrun=0, si_value={int=0, ptr=NULL}} --- + sigreturn({mask=[]}) = 84432420 + futex(0x5085624, FUTEX_WAIT_PRIVATE, 5795, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set) + --- SIGVTALRM {si_signo=SIGVTALRM, si_code=SI_TIMER, si_timerid=0, si_overrun=0, si_value={int=0, ptr=NULL}} --- + sigreturn({mask=[]}) = 84432420 + futex(0x5085624, FUTEX_WAIT_PRIVATE, 5795, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set) + +"""]] From 8c515b284e0b34897ac173450b437f2cf5dd5ea5 Mon Sep 17 00:00:00 2001 From: "jamie@b5676b90eec0401ca8faac7c972eaf5676891601" Date: Sun, 17 Mar 2019 03:29:31 +0000 Subject: [PATCH 10/11] Added a comment --- .../comment_2_471a44594af15057dd4781e759013627._comment | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_2_471a44594af15057dd4781e759013627._comment diff --git a/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_2_471a44594af15057dd4781e759013627._comment b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_2_471a44594af15057dd4781e759013627._comment new file mode 100644 index 0000000000..4227d64808 --- /dev/null +++ b/doc/forum/git_annex_hanging_in_smudge_on_2k_file_on_rpi/comment_2_471a44594af15057dd4781e759013627._comment @@ -0,0 +1,9 @@ +[[!comment format=mdwn + username="jamie@b5676b90eec0401ca8faac7c972eaf5676891601" + nickname="jamie" + avatar="http://cdn.libravatar.org/avatar/b9aa71e237c7bc49af04ec66194be8e0" + subject="comment 2" + date="2019-03-17T03:29:31Z" + content=""" +I just checked on it, it did eventually process that file, but `git annex sync` has been running for over 6 hours and is still going. +"""]] From e3edc74838d76edf0f4a7117d9cf30102ee2e924 Mon Sep 17 00:00:00 2001 From: maryjil2596 Date: Mon, 18 Mar 2019 06:42:20 +0000 Subject: [PATCH 11/11] Added a comment: iTunes Error 0xe8000015 --- .../comment_2_02e630afa29ebb0d54997f0e54fc70a6._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/forum/Problems_using_blake2_backend/comment_2_02e630afa29ebb0d54997f0e54fc70a6._comment diff --git a/doc/forum/Problems_using_blake2_backend/comment_2_02e630afa29ebb0d54997f0e54fc70a6._comment b/doc/forum/Problems_using_blake2_backend/comment_2_02e630afa29ebb0d54997f0e54fc70a6._comment new file mode 100644 index 0000000000..b394d7d90b --- /dev/null +++ b/doc/forum/Problems_using_blake2_backend/comment_2_02e630afa29ebb0d54997f0e54fc70a6._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="maryjil2596" + avatar="http://cdn.libravatar.org/avatar/2ce6b78d907f10b244c92330a4f0bd00" + subject="iTunes Error 0xe8000015" + date="2019-03-18T06:42:20Z" + content=""" +Nowadays, a lot of iPhone users are complaining about iTunes Error 0xe8000015. Therefore, I had shared a link Advanced Solutions To Fix iTunes Error 0xe8000015 to fix all the technical issues related to iTunes. Click the link n get rid of the issue in no time. +"""]]