*** empty log message ***
[gnus] / www / git.gnus.org / index.html
1 <HTML> 
2 <HEAD> 
3 <TITLE>Gnus Git Repo</TITLE> 
4 </HEAD> 
5 <BODY>
6 <a href="https://git.gnus.org/gnus.git">The writeable repository</a>
7 <a href="/gnus.git">The read-only repository</a>
8 <a href="/cgit/gnus.git/">A cgit web interface to the read-only repository</a>
9
10 <hr>
11 Instructions for checking Gnus out:<p>
12     The server uses packed refs.  Make sure your version of Git
13     can handle them (1.7.0.4 and later definitely do).  
14 <p>
15     <ul>
16       <li>Public access:<pre>git clone http://git.gnus.org/gnus.git</pre></li>
17       <li>Committer access (note the SSL certificate is self-signed):<pre>
18 # this will print lots of debugging info
19 GIT_SSL_NO_VERIFY=1 GIT_CURL_VERBOSE=1 git clone https://git.gnus.org/gnus.git
20
21 # this will be less verbose and probably OK
22 GIT_SSL_NO_VERIFY=1 git clone https://git.gnus.org/gnus.git
23
24 # this will be necessary if you have to use a proxy
25 GIT_SSL_NO_VERIFY=1 HTTPS_PROXY=proxy.example.com:8080 git clone https://git.gnus.org/gnus.git
26
27 cd gnus
28
29 # you should do this to tell git not to check the certificate (so GIT_SSL_NO_VERIFY is not needed anymore)
30 git config http.sslVerify false
31         </pre>
32
33         The committer should also have a <b>~/.netrc</b> file that says
34         <pre>machine git.gnus.org login yourlogin password yourpassword</pre>
35         <p>
36           If your password has a space in it or if you are a rebel,
37           use <pre>https://yourlogin:yourpassword@git.gnus.org/gnus.git</pre>
38           as the address and you won't need a <b>~/.netrc</b> file.
39           It's not recommended.
40         <p>
41           Also the server config says
42 <pre>
43 [receive]
44         denyDeletes = true
45         denyNonFastForwards = true
46 </pre> 
47 so that will, we hope, prevent unfortunate accidents.
48         <p>
49         Send e-mail
50         to <a href="mailto:tzz@lifelogs.com">tzz@lifelogs.com</a> to
51         get access, especially if you had CVS committer access
52         already.
53
54       </li>
55       <li>Server setup: Apache 2 using git-http-backend.  Commits go
56         to <b>cvslog@quimby.gnus.org</b>
57         and <b>ding-commits@quimby.gnus.org</b>, prefixed
58         with <b>[git] </b> and the envelope sender
59         is <b>git-logger</b>.  There are two (HTTP and HTTPS) Apache 2
60         servers but they both run git-http-backend so "smart" clients
61         are faster for committers and anonymous readers.
62       </li>
63     </ul>
64
65
66 </BODY></HTML>