summaryrefslogtreecommitdiffstats
path: root/everyday.html
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-06-06 01:23:49 +0000
committerJunio C Hamano <junio@hera.kernel.org>2006-06-06 01:23:49 +0000
commit7da87bb8f49b5c00786cbfb3e330f690e8b924c6 (patch)
tree031829d2133ff3f01d24c43e9cd2d174e036c424 /everyday.html
parent341071d878757c06a3931db660fe318effc8317e (diff)
downloadgit-htmldocs-7da87bb8f49b5c00786cbfb3e330f690e8b924c6.tar.gz
Autogenerated HTML docs for v1.3.3-g441c8
Diffstat (limited to 'everyday.html')
-rw-r--r--everyday.html48
1 files changed, 38 insertions, 10 deletions
diff --git a/everyday.html b/everyday.html
index 831183b46..93b56172b 100644
--- a/everyday.html
+++ b/everyday.html
@@ -870,16 +870,19 @@ create a signed tag.
make sure I did not accidentally rewind master beyond what I
already pushed out. "ko" shorthand points at the repository I have
at kernel.org, and looks like this:
- $ cat .git/remotes/ko
- URL: kernel.org:/pub/scm/git/git.git
- Pull: master:refs/tags/ko-master
- Pull: maint:refs/tags/ko-maint
- Push: master
- Push: +pu
- Push: maint
-In the output from "git show-branch", "master" should have
-everything "ko-master" has.
</p>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ cat .git/remotes/ko
+URL: kernel.org:/pub/scm/git/git.git
+Pull: master:refs/tags/ko-master
+Pull: maint:refs/tags/ko-maint
+Push: master
+Push: +pu
+Push: maint</tt></pre>
+</div></div>
+<p>In the output from "git show-branch", "master" should have
+everything "ko-master" has.</p>
</li>
<li>
<p>
@@ -930,6 +933,31 @@ git stream tcp nowait nobody \
<p>The actual configuration line should be on one line.</p>
</dd>
<dt>
+Run git-daemon to serve /pub/scm from xinetd.
+</dt>
+<dd>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ cat /etc/xinetd.d/git-daemon
+# default: off
+# description: The git server offers access to git repositories
+service git
+{
+ disable = no
+ type = UNLISTED
+ port = 9418
+ socket_type = stream
+ wait = no
+ user = nobody
+ server = /usr/bin/git-daemon
+ server_args = --inetd --syslog --export-all --base-path=/pub/scm
+ log_on_failure += USERID
+}</tt></pre>
+</div></div>
+<p>Check your xinetd(8) documentation and setup, this is from a Fedora system.
+Others might be different.</p>
+</dd>
+<dt>
Give push/pull only access to developers.
</dt>
<dd>
@@ -1039,7 +1067,7 @@ upload to public HTTP server hosted by your ISP.
</div>
<div id="footer">
<div id="footer-text">
-Last updated 30-May-2006 07:20:54 UTC
+Last updated 06-Jun-2006 01:23:29 UTC
</div>
</div>
</body>