Merge branch 'master' of ssh://git-annex.branchable.com

This commit is contained in:
Joey Hess 2025-01-10 10:37:50 -04:00
commit 3a013b9fa6
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
3 changed files with 45 additions and 1 deletions

View file

@ -1,6 +1,6 @@
### Please describe the problem.
The main repository `git://git-annex.branchable.com/` seems to be offline at the moment.
The main repository `git://git-annex.branchable.com/` seems to be out of reach at the moment.
The mirror `git://git.joeyh.name/git-annex` seems to work.
### What steps will reproduce the problem?

View file

@ -0,0 +1,34 @@
[[!comment format=mdwn
username="jkniiv"
avatar="http://cdn.libravatar.org/avatar/05fd8b33af7183342153e8013aa3713d"
subject="same problem on a VPS"
date="2025-01-09T21:14:06Z"
content="""
This doesn't seem to be merely a problem with my home internet but I also get the same error
on a VPS hosted by Hetzner (Helsinki data center):
```
jkniiv@jibun-ubuntu-2gb-hel1-1:~$ git clone git://git-annex.branchable.com/ git-annex-clone-TEST
Cloning into 'git-annex-clone-TEST'...
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
```
Yet:
```
jkniiv@jibun-ubuntu-2gb-hel1-1:~$ git clone git://git.joeyh.name/git-annex git-annex-clone-TEST
Cloning into 'git-annex-clone-TEST'...
remote: Enumerating objects: 281839, done.
remote: Counting objects: 100% (18490/18490), done.
remote: Compressing objects: 100% (6909/6909), done.
remote: Total 281839 (delta 12887), reused 16462 (delta 11469), pack-reused 263349 (from 1)
Receiving objects: 100% (281839/281839), 59.49 MiB | 20.45 MiB/s, done.
Resolving deltas: 100% (201606/201606), done.
```
So what is going on?
"""]]

View file

@ -0,0 +1,10 @@
[[!comment format=mdwn
username="yarikoptic"
avatar="http://cdn.libravatar.org/avatar/f11e9c84cb18d26a1748c33b48c924b4"
subject="comment 5"
date="2025-01-10T03:20:31Z"
content="""
It could be `%gitdir` or any other you like. It could be that any relative path - relative to that folder since it makes no sense relative to current working dir etc
I really feel odd about changing PATH for this purpose, especially to point to .git/hooks which want intended to be added to PATH. I think it if it was `.git/annex/hooks` , with documentation about such act happening, it would be a but more kosher, but I still feel better about some more explicit path specification
"""]]