If I clone a Github Repository , I do normally a git clone https://github.com/:username/:repo_name.git
. But now I've wanted to download the bare-Repo with wget
but it only returns the webpage.
How can I download a git repo with http? I thought this is git over http that indeed is only a git repo served over http. But what's wrong with this request. I thought the git client do the same. Even fetch the repo with GET.
I'm grateful for any answer!