Nick Dokos <nicholas.do...@hp.com> writes: > Bastien <b...@gnu.org> wrote: > >> Jambunathan K <kjambunat...@gmail.com> writes: >> >> > Nick Dokos <nicholas.do...@hp.com> writes: >> > >> >> There *is* a git mirror for emacs: git://repo.or.cz/emacs.git. >> > >> > This one is from savannah >> > >> > http://git.savannah.gnu.org/cgit/emacs.git >> >> Great minds think alike!! :) >> >> -- >> Bastien >> > > Thanks to both for pointing it out: I think I knew about it at some > point in the past and had some problems with it. > > So I just tried changing my git config to pull from there (I should > point out that I tried the git:// version of the URL) - I'm getting > > $ git pull > fatal: The remote end hung up unexpectedly > > So two questions: > > o is the savannah repo http only? > > o and if so, it used to be the case that http was much slower than git - > is that still the case?
Bzr user here. May be try one of these? ,---- https://savannah.gnu.org/git/?group=emacs | Anonymous checkout: | | git clone git://git.savannah.gnu.org/emacs.git `---- ,---- http://savannah.gnu.org/maintenance/UsingGit | URL-s summary: | | git://git.sv.gnu.org/myproject.git - git lightweight protocol (read-only access) | ssh://git.sv.gnu.org/srv/git/myproject.git - developer access using SSH | http://git.sv.gnu.org/r/myproject.git - slow dumb protocol, http-based, for use behind fascist firewalls | | Web browser: http://git.sv.gnu.org/gitweb/ | | If you use ssh-based access, please verify the host keys first at | SshAccess (git.sv.gnu.org is the same host as cvs.sv.gnu.org). | | Note: there is at most a 1/2h delay between Git activation in the web | front-end, and its creation on the system. Basic commands | | Checkout: | | git clone git://git.sv.gnu.org/project.git | | Firewall checkout: if you're behind a outgoing-traffic-filtering firewall, you can use Git's "dumb protocol" via HTTP - note that this is SLOWER, both for you and Savannah. Avoid if possible, and please tell your local sysadmin to allow outgoing git traffic (port 9418): | | git clone http://git.savannah.gnu.org/r/project.git | | Note: we enabled git-http-backend (a CGI script) to speed up HTTP cloning, but this is still not the recommended protocol. | | Project member checkout: if you want to be able to push your changes back into the repository on savannah: | | git clone lo...@git.sv.gnu.org:/srv/git/project.git | `---- > Thanks, > Nick > > > --