> On Aug 4, 2017, at 3:54 AM, Yury Akudovich <[email protected]> wrote: > > I've also tried to do `curl` and `git clone` to the URL and it also > failed, but it can succeed if I remove second `[email]` in the end of > the URL. So I think there is some bigger problem then just https > support. I can also try to do tcpdump to double check connection, if > needed. BTW, The OS is Debian testing.
You didn't actually address the question whether the official AppImage works. > $ curl -u [email protected] -v > 'https://cloud.subsurface-divelog.org//git/[email protected]\[[email protected]\]' curl against an https git URL with our "magic" branch syntax. Unlikely to do anything useful > $ curl -u [email protected] -v > 'https://cloud.subsurface-divelog.org//git/[email protected]' Again curl again an https git URL, now without the branch. Still not going to do anything useful > $ git clone > 'https://cloud.subsurface-divelog.org//git/[email protected]\[[email protected]\]' > Cloning into '[email protected]\[[email protected]\]'... > Username for 'https://cloud.subsurface-divelog.org': [email protected] > Password for 'https://[email protected]@cloud.subsurface-divelog.org': > fatal: Authentication failed for > 'https://cloud.subsurface-divelog.org//git/[email protected]\[[email protected]\]/' The branch syntax only works in Subsurface, not with curl > $ git clone 'https://cloud.subsurface-divelog.org//git/[email protected]' > Cloning into '[email protected]'... > Username for 'https://cloud.subsurface-divelog.org': [email protected] > Password for 'https://[email protected]@cloud.subsurface-divelog.org': > remote: Counting objects: 49, done. > remote: Compressing objects: 100% (28/28), done. > remote: Total 49 (delta 10), reused 0 (delta 0) > Unpacking objects: 100% (49/49), done. > warning: remote HEAD refers to nonexistent ref, unable to checkout. That almost works, except that you need to tell git that you want the '[email protected]' branch. git clone -b [email protected] https://cloud.subsurface-divelog.org//git/[email protected] should work But none of these will answer the question why your Subsurface build isn't working. /D _______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
