Hi!
It seems that the fix for this bug included in commit
96087636768146aa4b577952480cfd8977c551ba does not work, at least for me.
Here's me trying to git-debpush the new glm release:
git debpush --quilt=single
git-debpush: fetching from [email protected]:science-team/glm.git to
check existing state
Error from git ls-remote https://salsa.debian.org/science-team/glm.git/
remote:
remote:
========================================================================
remote:
remote: The namespace you were looking for could not be found.
remote:
remote:
========================================================================
remote:
fatal: Impossibile leggere dal repository remoto.
Assicurati di disporre dei privilegi d'accesso corretti
e che il repository esista.
git-debpush: check failed: repository is not publicly accessible; repo
permissions may be wrong? ('repo-inaccessible' check)
git-debpush: proceed anyway? (y/N)
git-debpush: some non-overridden check(s) failed; you can pass -f/--force to
ignore them
The issue is that the URL passed to ls-remote ends with a slash, and it
shouldn't. Removing the slash from the `remote_public_url` variable at
line 578 of git-debpush fixes the issue for me.
Did not bother submitting as a proper MR for such a small fix :)
Bye!