Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Update the FAQ to describe how to make a clone of the self-hosting fossil repository. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
68b73eb9b9db6028b83b576cd426fb51 |
| User & Date: | drh 2009-08-28 21:36:58.000 |
Context
|
2009-08-28
| ||
| 22:59 | Deleted some obsolete "todo" files. Updated the FAQ. Modified the the "vinfo" page to show check-in differences and made "vinfo" the default display for check-ins instead of "vdiff". check-in: 713b8be852 user: drh tags: trunk | |
| 21:36 | Update the FAQ to describe how to make a clone of the self-hosting fossil repository. check-in: 68b73eb9b9 user: drh tags: trunk | |
| 17:58 | Show the date and time on checkouts in the "info" command. check-in: 76630dd9f3 user: drh tags: trunk | |
Changes
Deleted todo.txt.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted win32.txt.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to www/faq.tcl.
| ︙ | ︙ | |||
89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
}
faq {
How can I delete inappropriate content from my fossil repository?
} {
See the article on [./shunning.wiki | "shunning"] for details.
}
#############################################################################
# Code to actually generate the FAQ
#
puts "<title>Fossil FAQ</title>"
| > > > > > > > > > > > > > > > > > > > > > | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
}
faq {
How can I delete inappropriate content from my fossil repository?
} {
See the article on [./shunning.wiki | "shunning"] for details.
}
faq {
How do I make a clone of the fossil self-hosting repository?
} {
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>
}
#############################################################################
# Code to actually generate the FAQ
#
puts "<title>Fossil FAQ</title>"
|
| ︙ | ︙ |
Changes to www/faq.wiki.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <title>Fossil FAQ</title> <h1 align="center">Frequently Asked Questions</h1> <p>Note: See also <a href="qandc.wiki">Questions and Criticisms</a>. <ol> <li><a href="#q1">What GUIs are available for fossil?</a></li> <li><a href="#q2">What is the difference between a "branch" and a "fork"?</a></li> <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> </ol> <hr> <a name="q1"></a> <p><b>(1) What GUIs are available for fossil?</b></p> <blockquote>The fossil executable comes with a web-based GUI built in. Just run: | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <title>Fossil FAQ</title> <h1 align="center">Frequently Asked Questions</h1> <p>Note: See also <a href="qandc.wiki">Questions and Criticisms</a>. <ol> <li><a href="#q1">What GUIs are available for fossil?</a></li> <li><a href="#q2">What is the difference between a "branch" and a "fork"?</a></li> <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> <blockquote>The fossil executable comes with a web-based GUI built in. Just run: |
| ︙ | ︙ | |||
88 89 90 91 92 93 94 95 | by not merging the changes in the private branch back into the trunk.</blockquote></li> <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> </ol> | > > > > > > > > > > > > > > > > > > > > | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | by not merging the changes in the private branch back into the trunk.</blockquote></li> <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> |