On 2 February 2017 at 19:45, Shubham Kumar <kumar.shub...@research.iiit.ac.in> wrote: > I'm unable to clone QEMU using this command on my terminal > " git clone git://git.qemu-project.org/qemu.git ". > The error I'm receiving is > " fatal: unable to access > 'https://git.qemu-project.org/qemu.git/': Received HTTP code 503 from proxy > after CONNECT". > > I have tried many solutions given on internet but it doesn't work out.
The error message talks about a proxy, which suggests that the problem is with the HTTP proxy between you and us (ie probably your company or institution's). In particular it looks like your proxy attempts to silently convert git:// protocol into https://, which is not necessarily going to work. You could try using HTTPS directly: git clone https://git.qemu-project.org/git/qemu.git or HTTP: git clone http://git.qemu-project.org/git/qemu.git (note that the url is not quite the same here!) ...but those seem to give 443 timeouts at the moment. I've asked the qemu server sysadmin if there's something that needs fixing. In the meantime, if you can do a git clone that uses real git:// protocol and doesn't go via your local proxy then that ought to work. Or you can use the github mirror: git clone https://github.com/qemu/qemu.git thanks -- PMM