This commit is contained in:
Joey Hess 2021-01-18 13:02:28 -04:00
parent f89721e13f
commit 75358f98b0
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 26 additions and 1 deletions

View file

@ -27,4 +27,4 @@ is running. The upload of the actual changeset starts after this, the processes
git-annex is great and revolutionized my file organization and backup structure (if they were even existing before)
[[!meta tite="gcrypt special remotes should support rsync:// and perhaps also sftp://"]]
[[!meta title="gcrypt special remotes should support rsync:// and perhaps also sftp://"]]

View file

@ -21,3 +21,8 @@ CallStack (from HasCallStack):
"""]]
-- Lykos
> Closing as
> <https://git-annex.branchable.com/bugs/gcrypt_remote__58___every_sync_uploads_huge_manifest/>
> is a later discussion of this with more detail about why it should be
> supported. [[done]] --[[Joey]]

View file

@ -0,0 +1,20 @@
[[!comment format=mdwn
username="joey"
subject="""comment 3"""
date="2021-01-18T16:45:35Z"
content="""
Also discussed in these:
<https://git-annex.branchable.com/bugs/gcrypt_rsync_remotes_don__39__t_work/>
<https://git-annex.branchable.com/bugs/gcrypt_remote__58___every_sync_uploads_huge_manifest/>
Some users there report that git-annex sync does work, as far as running
git push and pull. I think the form of your url is the problem,
gcrypt::rsync://192.168.178.241:test seems like it's trying to mix url
and rsync location syntax. Urls don't normally end with ":test",
that's not a valid url, and so the parse fails.
(Verified using Network.URI.parseURI same as git-annex does.)
Something like
gcrypt::rsync://192.168.178.241/home/you/test will work, or at least not
crash at that point.
"""]]