I'm trying to set up a public repository that is cloneable from my web site, similar to what is mentioned at https://git-annex.branchable.com/tips/setup_a_public_repository_on_a_web_site/ I've got a repo from my laptop that I can push to my web server, and I can list the contents of the `.git` directory: $ curl https://example.com/annex/.git/ Index of /annex/.git/

Index of /annex/.git/


../
    annex/                 12-Mar-2017 17:42                   -
    branches/           12-Mar-2017 17:38                   -
    hooks/                 12-Mar-2017 17:38                   -
    info/                   12-Mar-2017 17:38                   -
    logs/                   12-Mar-2017 17:38                   -
    objects/             12-Mar-2017 17:40                   -
    refs/                   12-Mar-2017 17:38                   -
    HEAD                     12-Mar-2017 17:39                  23
    config                 12-Mar-2017 17:40                 269
    description       12-Mar-2017 17:38                  73
    index                   12-Mar-2017 17:41                1200
    

However, when I try to clone it to simulate what I expect people to do, I get: $ git clone https://exmaple.com/annex/.git Cloning into 'annex... fatal: repository 'https://example.com/annex/.git/' not found I've configured with `git config core.sharedrepository world` and `git config receive.denyCurrentBranch updateInstead`, but it doesn't seem to be working as I can't clone the repository over https.