Diff
Not logged in

Differences From:

File www/faq.wiki part of check-in [522824b26a] - Documentation updates, including a big rework of the homepage. by drh on 2009-08-28 16:05:03. [view]

To:

File www/faq.wiki part of check-in [68b73eb9b9] - Update the FAQ to describe how to make a clone of the self-hosting fossil repository. by drh on 2009-08-28 21:36:58. [view]

@@ -9,8 +9,9 @@
 <li><a href="#q3">How do I create a new branch in fossil?</a></li>
 <li><a href="#q4">How do I create a private branch that won't get pushed back to the
   main repository.</a></li>
 <li><a href="#q5">How can I delete inappropriate content from my fossil repository?</a></li>
+<li><a href="#q6">How do I make a clone of the fossil self-hosting repository?</a></li>
 </ol>
 <hr>
 <a name="q1"></a>
 <p><b>(1) What GUIs are available for fossil?</b></p>
@@ -90,6 +91,26 @@
 <a name="q5"></a>
 <p><b>(5) How can I delete inappropriate content from my fossil repository?</b></p>
 
 <blockquote>See the article on [./shunning.wiki | "shunning"] for details.</blockquote></li>
+
+<a name="q6"></a>
+<p><b>(6) How do I make a clone of the fossil self-hosting repository?</b></p>
+
+<blockquote>Any of the following commands should work:
+<blockquote><pre>
+fossil  clone  http://www.fossil-scm.org/  fossil.fossil<br>
+fossil  clone  http://www2.fossil-scm.org/  fossil.fossil<br>
+fossil  clone  http://www.hwaci.com/cgi-bin/fossil  fossil.fossil
+</pre></blockquote>
+Once you have the repository cloned, you can open a local check-out
+as follows:
+<blockquote><pre>
+mkdir fossil; cd fossil; fossil open ../fossil.fossil
+</pre></blockquote>
+Thereafter you should be able to keep your local check-out up to date
+with the latest code in the public repository simply by typing:
+<blockquote><pre>
+fossil update
+</pre></blockquote></blockquote></li>
 
 </ol>