1 git-remote-persistent-https
 
   3 The git-remote-persistent-https binary speeds up SSL operations
 
   4 by running a daemon job (git-remote-persistent-https--proxy) that
 
   5 keeps a connection open to a server.
 
  11 https://commondatastorage.googleapis.com/git-remote-persistent-https/darwin_amd64.tar.gz
 
  14 https://commondatastorage.googleapis.com/git-remote-persistent-https/linux_amd64.tar.gz
 
  19 Move all of the git-remote-persistent-http* binaries to a directory
 
  25 HTTPS requests can be delegated to the proxy by using the
 
  26 "persistent-https" scheme, e.g.
 
  28 git clone persistent-https://kernel.googlesource.com/pub/scm/git/git
 
  30 Likewise, .gitconfig can be updated as follows to rewrite https urls
 
  31 to use persistent-https:
 
  33 [url "persistent-https"]
 
  35 [url "persistent-http"]
 
  38 You may also want to allow the use of the persistent-https helper for
 
  39 submodule URLs (since any https URLs pointing to submodules will be
 
  40 rewritten, and Git's out-of-the-box defaults forbid submodules from
 
  41 using unknown remote helpers):
 
  43 [protocol "persistent-https"]
 
  45 [protocol "persistent-http"]
 
  49 #####################################################################
 
  50 # BUILDING FROM SOURCE
 
  51 #####################################################################
 
  55 The source is available in the contrib/persistent-https directory of
 
  56 the Git source repository. The Git source repository is available at
 
  57 git://git.kernel.org/pub/scm/git/git.git/
 
  58 https://kernel.googlesource.com/pub/scm/git/git
 
  63 The code is written in Go (http://golang.org/) and the Go compiler is
 
  64 required. Currently, the compiler must be built and installed from tip
 
  65 of source, in order to include a fix in the reverse http proxy:
 
  66 http://code.google.com/p/go/source/detail?r=a615b796570a2cd8591884767a7d67ede74f6648
 
  71 Run "make" to build the binaries. See the section on