Server IP : 85.214.239.14 / Your IP : 18.222.110.231 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/self/root/proc/2/cwd/usr/share/doc/git/contrib/persistent-https/ |
Upload File : |
git-remote-persistent-https The git-remote-persistent-https binary speeds up SSL operations by running a daemon job (git-remote-persistent-https--proxy) that keeps a connection open to a server. PRE-BUILT BINARIES Darwin amd64: https://commondatastorage.googleapis.com/git-remote-persistent-https/darwin_amd64.tar.gz Linux amd64: https://commondatastorage.googleapis.com/git-remote-persistent-https/linux_amd64.tar.gz INSTALLING Move all of the git-remote-persistent-http* binaries to a directory in PATH. USAGE HTTPS requests can be delegated to the proxy by using the "persistent-https" scheme, e.g. git clone persistent-https://kernel.googlesource.com/pub/scm/git/git Likewise, .gitconfig can be updated as follows to rewrite https urls to use persistent-https: [url "persistent-https"] insteadof = https [url "persistent-http"] insteadof = http You may also want to allow the use of the persistent-https helper for submodule URLs (since any https URLs pointing to submodules will be rewritten, and Git's out-of-the-box defaults forbid submodules from using unknown remote helpers): [protocol "persistent-https"] allow = always [protocol "persistent-http"] allow = always ##################################################################### # BUILDING FROM SOURCE ##################################################################### LOCATION The source is available in the contrib/persistent-https directory of the Git source repository. The Git source repository is available at git://git.kernel.org/pub/scm/git/git.git/ https://kernel.googlesource.com/pub/scm/git/git PREREQUISITES The code is written in Go (http://golang.org/) and the Go compiler is required. Currently, the compiler must be built and installed from tip of source, in order to include a fix in the reverse http proxy: http://code.google.com/p/go/source/detail?r=a615b796570a2cd8591884767a7d67ede74f6648 BUILDING Run "make" to build the binaries. See the section on INSTALLING above.