From 494a101eba8bfe08d0194f253644ea3ef2e6f857 Mon Sep 17 00:00:00 2001 From: jnkl Date: Sat, 22 Mar 2025 21:29:19 +0000 Subject: [PATCH] --- ...t_creates_random_antagonistic_commits.mdwn | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/forum/git_assistant_creates_random_antagonistic_commits.mdwn diff --git a/doc/forum/git_assistant_creates_random_antagonistic_commits.mdwn b/doc/forum/git_assistant_creates_random_antagonistic_commits.mdwn new file mode 100644 index 0000000000..04b050d8bd --- /dev/null +++ b/doc/forum/git_assistant_creates_random_antagonistic_commits.mdwn @@ -0,0 +1,23 @@ +I have a fleet of some headless systems and some desktop machines. In the git tree there are somethimes commits like these. Time between the two commits is always more or less 10 seconds. + + git diff c69f4ffee8d288174abe34db03e572c04bc8ba8b 5aceafda84e2d737a97f1e6b8f647adc6b787789 + diff --git a/Dokumente/Gesamtrechnung.pdf b/Dokumente/Gesamtrechnung.pdf + deleted file mode 100644 + index ace4b282de7..00000000000 + --- a/Dokumente/Gesamtrechnung.pdf + +++ /dev/null + @@ -1 +0,0 @@ + -/annex/objects/SHA256E-s22050--e1551117820028dc66e8c4d2e834857664535a4297ce9649a5cf40f7b9fafc66.pdf + + git diff 5aceafda84e2d737a97f1e6b8f647adc6b787789 d3c6388f50e06a5dfae94cd2431c6b3827cee05a + diff --git a/Dokumente/Gesamtrechnung.pdf b/Dokumente/Gesamtrechnung.pdf + new file mode 100644 + index 00000000000..ace4b282de7 + --- /dev/null + +++ b/Dokumente/Gesamtrechnung.pdf + @@ -0,0 +1 @@ + +/annex/objects/SHA256E-s22050--e1551117820028dc66e8c4d2e834857664535a4297ce9649a5cf40f7b9fafc66.pdf + +Random files (one at a time) on random machines at random times are deleted and instantly recommitted. At least I think it happens randomly. + +What happens here?