a0badc5069
Such an url is not valid; parseURI will fail on it. But git-annex doesn't actually need to parse the url, because all it needs to do to support syncing with it is know that it's not a local path, and use git pull and push. (Note that there is no good reason for the user to use such an url. An absolute url is valid and I patched git-remote-gcrypt to support them years ago. Still, users gonna do anything that tools allow, and git-remote-gcrypt still supports them.) Sponsored-by: Jack Hill on Patreon
39 lines
1.6 KiB
Markdown
39 lines
1.6 KiB
Markdown
### Please describe the problem.
|
|
`git annex sync` is not automatically run for gcrypt remotes using rsync with a relative path
|
|
|
|
### What steps will reproduce the problem?
|
|
Flow 1 (relative path, broken)
|
|
|
|
* `git remote add test gcrypt::rsync://user@user.rsync.net:relative/path/to/repo`
|
|
* `git annex sync` -> DOES NOT SYNC to test remote
|
|
* Nothing has been synced so I CANNOT successfully clone from the test remote with `git clone gcrypt::rsync://user@user.rsync.net:relative/path/to/repo`
|
|
* `git push test git-annex master`
|
|
* I can successfully clone from the test remote with `git clone gcrypt::rsync://user@user.rsync.net:relative/path/to/repo`
|
|
|
|
Flow 2 (absolute path, working)
|
|
|
|
* `git remote add test gcrypt::rsync://user@user.rsync.net/full/path/to/repo`
|
|
* `git annex sync` -> DOES SYNC to test remote
|
|
* I can successfully clone from the test remote with `git clone gcrypt::rsync://user@user.rsync.net:relative/path/to/repo`
|
|
|
|
|
|
### What version of git-annex are you using? On what operating system?
|
|
* Debian 11
|
|
* git-annex version: 10.20230227
|
|
* git-remote-gcrypt version 1.5
|
|
|
|
|
|
### Please provide any additional information below.
|
|
|
|
[[!format sh """
|
|
# If you can, paste a complete transcript of the problem occurring here.
|
|
# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log
|
|
|
|
|
|
# End of transcript or log.
|
|
"""]]
|
|
|
|
### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders)
|
|
I am VERY happy with git annex and am using it successfully with a gcrypt remote using an absolute path :)
|
|
|
|
> [[fixed|done]] --[[Joey]]
|