Joey Hess [Thu, 21 Aug 2025 15:04:26 +0000 (11:04 -0400)]
Removed support for git versions older than 2.5.
This entirely removes Git.BuildVersion, which avoids the possibility that
git-annex will behave differently based on the version of git it was built
with, rather than the version it's used with.
Debian oldoldstable is the oldest version of git that git-annex needs to
support, since it's used in the amd64ancient build.
cabal configure will fail if the git version is too old.
Sponsored-by: Nicholas Golder-Manning
Joey Hess [Wed, 20 Aug 2025 19:14:01 +0000 (15:14 -0400)]
onlyencryptcreds=yes
initremote: When onlyencryptcreds=yes is used along with embedcreds=yes,
and encryption is enabled, only encrypt the embedded creds, without
encrypting the content of the special remote.
Useful for exporttree=yes/importtree=yes remotes.
Sponsored-by: Joshua Antonishen
Joey Hess [Wed, 20 Aug 2025 18:58:44 +0000 (14:58 -0400)]
bug
Joey Hess [Wed, 20 Aug 2025 18:35:27 +0000 (14:35 -0400)]
bug
Joey Hess [Wed, 20 Aug 2025 18:23:03 +0000 (14:23 -0400)]
remove now unused parameters
Joey Hess [Wed, 20 Aug 2025 18:16:29 +0000 (14:16 -0400)]
comment
Joey Hess [Wed, 20 Aug 2025 17:36:39 +0000 (13:36 -0400)]
fixed
Joey Hess [Wed, 20 Aug 2025 17:35:31 +0000 (13:35 -0400)]
improve error when unable to reverse adjust merge
Give the user a hint about what to do, as well as what they should have
done to avoid the problem.
Joey Hess [Wed, 20 Aug 2025 17:28:03 +0000 (13:28 -0400)]
error out when another branch has been manually merged into the adjusted branch
This avoids losing the merge commit when re-running git-annex adjust in the
adjusted branch.
It also makes git-annex sync error out, rather than displaying a warning
and exiting successfully.
Sponsored-by: Leon Schuermann on Patreon
Joey Hess [Wed, 20 Aug 2025 16:31:35 +0000 (12:31 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
jcjgraf [Mon, 18 Aug 2025 19:02:35 +0000 (19:02 +0000)]
Added a comment: Reproduce Issue
stv0g [Mon, 18 Aug 2025 17:07:40 +0000 (17:07 +0000)]
Added a comment: encryption=credsonly
Joey Hess [Fri, 15 Aug 2025 22:11:19 +0000 (18:11 -0400)]
bug
Joey Hess [Fri, 15 Aug 2025 15:54:42 +0000 (11:54 -0400)]
update
Joey Hess [Thu, 14 Aug 2025 15:05:42 +0000 (11:05 -0400)]
warn and refuse to autoenable a special remote when name is in use
Improve behavior when there are special remotes configured with
autoenable=yes with names that conflict with other remotes.
The use of remoteList' is to avoid using the cached remote list in the case
where there are two special remotes both configured to autoenable and both
with the same name. Once the 1st is autoenabled, this makes reload the
remote list and so see the 1st, and so refuse to autoenable the second.
This adds a little bit of overhead, but it should be sufficiently small not
to need optimising.
Sponsored-by: Dartmouth College's OpenNeuro project
Joey Hess [Thu, 14 Aug 2025 14:15:29 +0000 (10:15 -0400)]
followup
Joey Hess [Thu, 14 Aug 2025 13:56:15 +0000 (09:56 -0400)]
close
Joey Hess [Thu, 14 Aug 2025 13:22:44 +0000 (09:22 -0400)]
simplify
Joey Hess [Wed, 13 Aug 2025 20:49:21 +0000 (16:49 -0400)]
info: Added --show option
To pick which parts of the info to calculate and display.
Sponsored-by: Dartmouth College's DANDI project
Joey Hess [Wed, 13 Aug 2025 20:04:46 +0000 (16:04 -0400)]
comment
Joey Hess [Wed, 13 Aug 2025 19:33:42 +0000 (15:33 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Wed, 13 Aug 2025 19:33:39 +0000 (15:33 -0400)]
close
Joey Hess [Wed, 13 Aug 2025 19:30:47 +0000 (15:30 -0400)]
Bump aws build dependency to 0.24.1
That's the version in Debian stable now. And this removes a lot of ifdefs.
Also I'm pretty sure a recent commit broke building with older versions of
aws, although that could be fixed with sufficent testing.
Joey Hess [Wed, 13 Aug 2025 19:21:22 +0000 (15:21 -0400)]
probe AWS datacenter
S3: When initremote is given the name of a bucket that already exists,
automatically set datacenter to the right value, rather than needing it to
be explicitly set.
This needs aws-0.23. But, initremote stores the datacenter value, so
a remote set up this way can be used with git-annex built with an older aws.
This is not done when signature=anonymous, because in that case,
using AWS.defaultRegion works fine for accessing buckets on other
datacenters.
It feels a bit round-about to need to do this probing. But without it,
the problem seems to be that, with a v4 signature, the location constraint
is included in the Authorization header. When that is the wrong location,
AWS S3 rejects it. I do wonder though if there is an easier way that I
am currently missing.
Sponsored-by: Dartmouth College's DANDI project
Joey Hess [Wed, 13 Aug 2025 18:19:36 +0000 (14:19 -0400)]
fix default region reversion
Commit
215640096f6a3469c119d50373f3035cf19fe130 caused the default
region for S3 to change to us-east-2. This was due to regionInfo having
an undocumented property that the first item in the list is for the
default region.
Avoid relying on regionInfo for defaultRegion.
Sponsored-by: Dartmouth College's DANDI project
yarikoptic [Wed, 13 Aug 2025 17:49:20 +0000 (17:49 +0000)]
wishlist of faster/specific info for a remote
Joey Hess [Wed, 13 Aug 2025 17:18:35 +0000 (13:18 -0400)]
S3: Default to signature=v4 when using an AWS endpoint
* S3: Default to signature=v4 when using an AWS endpoint, since some
AWS regions need v4 and all support it. When host= is used to specify
a different S3 host, the default remains signature=v2.
* webapp: Support setting up S3 buckets in regions that need v4
signatures.
For the webapp, went ahead and added all current S3 regions
(except govcloud, which is not usable by everyone).
Sponsored-by: Dartmouth College's DANDI project
Joey Hess [Wed, 13 Aug 2025 16:51:27 +0000 (12:51 -0400)]
document "anonymous" in ValueDesc
Joey Hess [Wed, 13 Aug 2025 16:50:05 +0000 (12:50 -0400)]
comment
Joey Hess [Tue, 12 Aug 2025 18:26:29 +0000 (14:26 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Michael [Mon, 11 Aug 2025 03:37:34 +0000 (03:37 +0000)]
Joey Hess [Fri, 8 Aug 2025 20:10:47 +0000 (16:10 -0400)]
add https://pypi.org/project/git-annex-remote-internxt/
Joey Hess [Fri, 8 Aug 2025 20:10:02 +0000 (16:10 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
evgeni [Fri, 8 Aug 2025 12:49:42 +0000 (12:49 +0000)]
Added a comment: repodata is empty again :(
Joey Hess [Mon, 4 Aug 2025 18:28:47 +0000 (14:28 -0400)]
stack.yaml: Update to lts-24.2.
nobodyinperson [Mon, 4 Aug 2025 08:22:12 +0000 (08:22 +0000)]
Add YouTube link
Updated the S3-special-remote example and prose based on recent B2 experience
Joey Hess [Fri, 1 Aug 2025 17:57:50 +0000 (13:57 -0400)]
comment
Joey Hess [Fri, 1 Aug 2025 17:55:38 +0000 (13:55 -0400)]
reword
Joey Hess [Fri, 1 Aug 2025 17:52:29 +0000 (13:52 -0400)]
link to new page
Joey Hess [Fri, 1 Aug 2025 17:51:25 +0000 (13:51 -0400)]
add section on security
Joey Hess [Fri, 1 Aug 2025 17:46:53 +0000 (13:46 -0400)]
inline didn't work due to extension
Joey Hess [Fri, 1 Aug 2025 17:45:39 +0000 (13:45 -0400)]
layout
Joey Hess [Fri, 1 Aug 2025 17:43:23 +0000 (13:43 -0400)]
add example git-annex-p2p-unix-sockets program and end-user docs
Joey Hess [Fri, 1 Aug 2025 16:58:03 +0000 (12:58 -0400)]
improve AuthToken display in P2P --debug
Using an empty string to obscure the AuthToken made it impossible to
tell if one was really being presented or not.
Joey Hess [Fri, 1 Aug 2025 16:10:33 +0000 (12:10 -0400)]
Merge branch 'master' into genericp2p
Joey Hess [Thu, 31 Jul 2025 19:21:22 +0000 (15:21 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Thu, 31 Jul 2025 19:20:28 +0000 (15:20 -0400)]
update design doc with changes from genericp2p branch
That branch is basically ready to merge, but needs more testing in a
chicken and egg situation.
yarikoptic [Thu, 31 Jul 2025 19:07:57 +0000 (19:07 +0000)]
Added a comment
Joey Hess [Thu, 31 Jul 2025 18:57:51 +0000 (14:57 -0400)]
avoid broken pipe zombies
hClose crashes if the pipe is broken, preventing waiting for the process
Joey Hess [Thu, 31 Jul 2025 18:37:24 +0000 (14:37 -0400)]
remotedaemon support for generic P2P transports
RemoteDaemon.Transport.Tor was refactored into this, and most of the
code is reused between them.
getSocketFile does not yet deal with repositories on crippled
filesystems that don't support sockets. Annex.Ssh detects that and
allows the user to set an environment variable, and something similar
could be done here.
And it does not deal with a situation where there is no path to the
socket file that is not too long. In that situation it would crash out
I suppose. Probably though, remotedaemon is ran from the top of the
repo, and in that case the path is just ".git/annex/p2p/<md5>" so nice
and short.
This seems to mostly work. But I don't yet have a working git-annex-p2p-
command to test it with.
And with my not quite working git-annex-p2p-foo test script, running
remotedaemon results in an ever-growing number of zombie processes
that it's not waiting on.
Joey Hess [Thu, 31 Jul 2025 17:18:30 +0000 (13:18 -0400)]
changed design for p2p generic socket
Having the git-annex-p2p-<netname> command output the socket filename
left git-annex scrambling to listen to it in order to not miss incoming
connections. And if the command uses something like socat UNIX-CONNECT,
that expects the socket to be accepting connections and errors out when
it's not, that would be a problem.
Rather than complicating the protocol with git-annex needing to send
back a message when it's listening to the socket, simplified it by
having git-annex provide the socket path to the command.
This does mean that, if a P2P network has its own place it expects to
find a socket file, the git-annex-p2p-<netname> command would need to
somehow arrange for it to use the git-annex socket path. A symlink would
be one way to handle that situation.
Yann Büchau [Thu, 31 Jul 2025 16:25:31 +0000 (18:25 +0200)]
Add yann's TdF talk about life in git annex
Joey Hess [Wed, 30 Jul 2025 19:25:17 +0000 (15:25 -0400)]
add git-remote-p2p-annex
Added git-remote-p2p-annex, which allows git pull and push to P2P networks
provided by external commands.
This is a refactor of git-remote-tor-annex, and should just work. Except
possibly for quirks with the address parsing. I've checked that the address
parsing basically works.
One thing I don't understand is why git-remote-tor-annex removes "/*" from
the end of the address. The git history does not provide any hints. So I
didn't make git-remote-p2p-annex do the same. Maybe that is needed in some
situation? But, a P2P address could contain "/", so removing it would be a
problem. I can't see anything in gitremote-helpers(7) about why the url
might get such a thing added to the end of it. My guess is that is not
needed for tor either (but does no harm there since onion addresses never
contain "/").
At this point, the implementation of generic P2P transports needs only
remotedaemon support.
Joey Hess [Wed, 30 Jul 2025 18:46:37 +0000 (14:46 -0400)]
use Annex.ExternalAddonProcess for P2P.Generic processes
These are another sort of external addon process, and this makes several
things work including shell scripts on windows. And it makes for nicer
error messages when the command is not in the path.
Note that the refactored startExternalAddonProcess used by this
does not use propGitEnv to set git environment variables in the
environment. Unlike startExternalAddonProcessProtocol which does.
This is because it runs in IO and does not have access to that
information. But also, I don't think that P2P.Generic processes need
that.
Joey Hess [Wed, 30 Jul 2025 18:08:26 +0000 (14:08 -0400)]
p2p --enable
p2p: Added --enable option, which can be used to enable P2P networks
provided by external commands git-annex-p2p-<netname>
Made git-annex p2p --enable tor behave the same as git-annex enable-tor,
to make tor a bit less of a special case. However, it canot be run as root,
since it cannot take the user id parameter.
Joey Hess [Wed, 30 Jul 2025 17:21:29 +0000 (13:21 -0400)]
support P2PAnnex in connectPeer
This is probably enough to support accessing remotes using p2p-annex:: urls.
Not tested yet of course since there is not yet support for serving the
other side of such a connection, or for setting up such a connection.
P2P.Generic has an implementation of the whole interface to the
git-annex-p2p-<netname> commands.
Joey Hess [Wed, 30 Jul 2025 16:25:59 +0000 (12:25 -0400)]
add connProcess to P2PConnection
When using the new generic P2P transport to open an outgoing connection
to a peer, this will hold the pid of the git-annex-p2p-<netname>
command.
closeConnection simply waits for it. Rather than relying on garbage
collection of the closed handles to close it.
In Remote.Helper.Ssh, connProcess is set to Nothing, even though there
is a similar process being used there. That code stores the pid in
OpenConnection instead, and handles waiting for it itself. A bit ugly,
but not worth cleaning up at this point, maybe later.
nobodyinperson [Wed, 30 Jul 2025 16:17:44 +0000 (16:17 +0000)]
Added a comment: Use an older version e.g. from archive.org
Joey Hess [Wed, 30 Jul 2025 16:02:33 +0000 (12:02 -0400)]
add P2PAnnex constructor
This is for p2p-annex:: urls that will use the new generic P2P
transport.
In addressCredsFile, threw in an url encoding of any non-alphanumeric
characters that are in the address. This is to avoid any possible path
traversal attacks via a p2p-annex:: url, since the address part of it
could contain any characters. And, went ahead and did the same url
encoding of tor-annex:: urls, even though tor onion addresses are all
alphanumerics, on the off chance that might avoid a similar problem.
(It does not seem likely enough to treat it as a security hole.)
h0b0 [Wed, 30 Jul 2025 15:19:06 +0000 (15:19 +0000)]
Added a comment: Cataline build missing
Joey Hess [Tue, 29 Jul 2025 18:26:10 +0000 (14:26 -0400)]
document output as a single line
Joey Hess [Tue, 29 Jul 2025 18:24:05 +0000 (14:24 -0400)]
rename design page
Joey Hess [Tue, 29 Jul 2025 18:22:25 +0000 (14:22 -0400)]
documentation for generic P2P transports
Joey Hess [Tue, 29 Jul 2025 18:00:21 +0000 (14:00 -0400)]
design for p2p socket transport
apoelstra [Thu, 24 Jul 2025 14:44:52 +0000 (14:44 +0000)]
Added a comment: fsck can do this
Joey Hess [Tue, 22 Jul 2025 18:11:53 +0000 (14:11 -0400)]
add news item for git-annex 10.
20250721
Joey Hess [Tue, 22 Jul 2025 18:11:47 +0000 (14:11 -0400)]
releasing package git-annex version 10.
20250721
mih [Tue, 22 Jul 2025 13:31:21 +0000 (13:31 +0000)]
Added a comment: Works!
Joey Hess [Mon, 21 Jul 2025 18:24:22 +0000 (14:24 -0400)]
prep for release of 10.
20250721
Joey Hess [Mon, 21 Jul 2025 18:16:35 +0000 (14:16 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
nobodyinperson [Mon, 21 Jul 2025 18:12:59 +0000 (18:12 +0000)]
Added a comment: Workaround for default wanted content?
Joey Hess [Mon, 21 Jul 2025 18:10:26 +0000 (14:10 -0400)]
run reconcileStaged even in smudge clean filter, using alternate code path
Improved workaround for git 2.50 bug, avoding an occasional test suite
failure, as well as some situations where an unlocked file did not get
populated when adding another file to the repository with the same content.
This uses the alternate code path that was already using when there was
a conflict. Since that code path is not able to record its work,
it will redo the same work next time. If the only way reconcileStaged
is getting run is via the smudge clean filter, that could result in
more and more changes getting processed redundantly each time. Once
some other git-annex command runs and calls reconcileStaged, it
will stop redoing that work. I don't think the extra work will be a
problem.
Joey Hess [Mon, 21 Jul 2025 16:51:57 +0000 (12:51 -0400)]
make --keep-failures show full path to test repo
Otherwise, had to guess which of several subdirectories was the right
one.
Joey Hess [Mon, 21 Jul 2025 16:27:39 +0000 (12:27 -0400)]
fixed build failure
Joey Hess [Mon, 21 Jul 2025 16:26:45 +0000 (12:26 -0400)]
fix build with OsPath build flag
Joey Hess [Mon, 21 Jul 2025 16:25:17 +0000 (12:25 -0400)]
fix build warning
Joey Hess [Mon, 21 Jul 2025 16:20:48 +0000 (12:20 -0400)]
response
Joey Hess [Mon, 21 Jul 2025 16:13:40 +0000 (12:13 -0400)]
Add --url option and url= preferred content expression
To match content that is recorded as present in an url.
Note that, this cannot ask remotes to provide an url using whereisKey, like
whereis does. Because preferred content expressions need to match the same
from multiple perspectives, and the remote would not always be available.
That's why the docs say "recorded as present", but still this may be
surprising to some who see an url in whereis output and are surprised they
cannot match on it.
The use of getDownloader is to strip the downloader prefix from urls like
"yt:". Note that, when OtherDownloader is used, this strips the ":" prefix,
and allows matching on those urls too.
Joey Hess [Mon, 21 Jul 2025 14:53:08 +0000 (10:53 -0400)]
Merge branch 'master' of ssh://git-annex.branchable.com
Joey Hess [Sat, 19 Jul 2025 20:45:51 +0000 (16:45 -0400)]
todo
jnkl [Sat, 19 Jul 2025 09:05:46 +0000 (09:05 +0000)]
Added a comment
Joey Hess [Fri, 18 Jul 2025 13:49:21 +0000 (09:49 -0400)]
todo
jose1711 [Fri, 18 Jul 2025 09:10:50 +0000 (09:10 +0000)]
Added a comment: fs type?
jnkl [Thu, 17 Jul 2025 08:27:22 +0000 (08:27 +0000)]
mih [Thu, 17 Jul 2025 06:58:01 +0000 (06:58 +0000)]
Added a comment: Thanks!
Joey Hess [Tue, 15 Jul 2025 17:09:45 +0000 (13:09 -0400)]
fsck: Fix location of annexed files when run in linked worktrees
This cleans up after the bug that was fixed in commit
6a9e923c74a1ae5c4c904e7a28e9339bdc241427
Object files that were stored in the wrong location are rescued,
and after that any wrong location logs will be fixed by the usual fsck.
Joey Hess [Mon, 14 Jul 2025 19:06:39 +0000 (15:06 -0400)]
tag INM7
Based on submitter, I assume so..
Joey Hess [Mon, 14 Jul 2025 18:43:43 +0000 (14:43 -0400)]
extend gitAnnexLink special case for worktrees
Fix symlinks generated to annexed content when in adjusted unlocked branch in a
linked worktree on a filesystem not supporting symlinks.
Before this fix, the symlink generated by eg git-annex sync in an adjusted
unlocked branch contained ".git/worktrees/". There was a special case
for the similar problem with submodules, so just use it to handle this case as
well. To detect this case, rely on fixupUnusualRepos setting mainWorkTreePath.
Joey Hess [Mon, 14 Jul 2025 17:52:13 +0000 (13:52 -0400)]
avoid changing gitdir
This code dates back 10 years to commit
e322826e33ede47a2d9c5f979fd629627bcd709c. But as far as I can tell,
it was never necessary. Notice that the comment added in that
commit doesn't match the code -- it says it adjusts the Repo when
the filesystem doesn't support symlinks, but it actually only adjusts
the Repo when the filesystem *does* support symlinks.
Testing in a submodule after this change, annex symlinks still point to
.git/annex/objects/.
(Note that gitAnnexLink contains a special case for submodules on filesystem
not supporting symlinks. I have verified that special case still works.
Without that special case, the annex links look like eg
"../.git/modules/foo/annex/objects", and with them, they look like
".git/annex/objects"
Joey Hess [Mon, 14 Jul 2025 17:36:17 +0000 (13:36 -0400)]
fixed but not ready to close yet
Joey Hess [Mon, 14 Jul 2025 17:20:39 +0000 (13:20 -0400)]
fix handling of linked worktrees on filesystems w/o symlinks
Fix bug in handling of linked worktrees on filesystems not supporting
symlinks, that caused annexed file content to be stored in the wrong
location inside the git directory, and also caused pointer files to not get
populated.
This parameterizes functions in Annex.Locations with a GitLocationMaker.
The uses of standardGitLocationMaker are in cases where the path returned
by a function should not change when in a linked worktree. For example,
gitAnnexLink uses standardGitLocationMaker because symlink targets should
always be to ".git/annex/objects" paths, even when in a linked worktree.
Hopefully I have gotten all uses of standardGitLocationMaker right.
This also assumes that all path construction to the annex directory
is done via the functions in Annex.Locations, and there is no other,
ad-hoc construction elsewhere. Thankfully, Annex.Locations has been around
since the beginning, and has been used consistently. I think.
---
In fixupUnusualRepos, when symlinks are supported, the .git file is replaced
with a symlink to the linked worktree git directory. And in that directory,
an "annex" symlink points to the main annex directory. In that case,
it's not necessary to set mainWorkTreePath. It would be ok to set it,
but not setting it in that case allows an optimisation of avoiding reading
the "commondir" file.
The change to make fixupUnusualRepos set mainWorkTreePath when the
repository is not initialized yet is done in case the initialization itself
writes to the annex directory. If that were the case, without setting
mainWorkTreePath, the annex symlink would not be set up yet, and so
it might have created the annex directory in the wrong place. Currently
that didn't happen, but now that mainWorkTreePath is available, using it
here avoids any such later problem.
---
This commit does not deal with the mess of a worktree that has
experienced this bug before. In particular, if `git-annex get` were
run in such a worktree, it would have stored the object files in the
linked worktree's git directory, rather than in the main git directory.
Such misplaced object files need to be dealt with; the plan is to make
git-annex fsck notice and fix them.
A worktree that has experienced this bug before will contain unpopulated
pointer files. Those may eventually get fixed up in regular usage of
git-annex, but git-annex fsck will also fix them up.
---
Finally, this has me pondering if all of git-annex's state files should
really be stored in one common place across all linked worktrees. Should
perhaps state files that are specific to the worktree be stored per-worktree?
That has not been the case when using git-annex on filesystems supporting
symlinks, but it *has* been the case on filesystems not supporting
symlinks. Perhaps this leads to some other buggy behavior in some cases.
Or perhaps to extra work being done.
For example, the keys database has an associated files table. Which depends
on the worktree. But reconcileStaged updates that table, so when git-annex
is used first in one worktree and then in another one, reconcileStaged will
update the table to reflect the current worktree. Which is extra work each
time a different worktree is used. But also, what if two git-annex
processes are running at the same time, in separate worktrees? Probably
this needs more thought and investigation.
So there is a risk that this commit exposes such buggy behavior in a
situation where it didn't happen before, due to the filesystem not
supporting symlinks. But, given how much this bug crippled using linked
worktrees in such a situation, I doubt that many people have been doing
that.
Joey Hess [Mon, 14 Jul 2025 13:49:51 +0000 (09:49 -0400)]
comment typo
Joey Hess [Fri, 11 Jul 2025 19:55:50 +0000 (15:55 -0400)]
subtlety
Joey Hess [Fri, 11 Jul 2025 18:46:36 +0000 (14:46 -0400)]
complication
Joey Hess [Fri, 11 Jul 2025 18:35:47 +0000 (14:35 -0400)]
analysis
Joey Hess [Fri, 11 Jul 2025 16:50:25 +0000 (12:50 -0400)]
update
Joey Hess [Fri, 11 Jul 2025 16:42:22 +0000 (12:42 -0400)]
another case
Joey Hess [Fri, 11 Jul 2025 16:16:25 +0000 (12:16 -0400)]
reproed
gioele@678b7c03f524f2669b179b603f65352fcc16774e [Wed, 9 Jul 2025 19:36:24 +0000 (19:36 +0000)]
Added a comment