12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
or <a href="build.wiki">build it yourself</a> from sources.
Install fossil by putting the fossil binary
someplace on your PATH environment variable.</p>
</blockquote>
<h2>Cloning A Existing Repository</h2>
<blockquote>
<p>Use this command:</p>
<blockquote>
<b>fossil clone</b> <i>URL repository-filename</i>
</blockquote>
<p>The <i>URL</i> above is the http URL for the fossil repository
you want to clone. You can call the new repository anything you
want - there are no naming restrictions. As an example, you can
clone the fossil repository this way:</p>
<blockquote>
<b>fossil clone http://www.fossil-scm.org/fossil myclone.fsl</b>
</blockquote>
<p>Note: If you are behind a restrictive firewall, you might need
to <a href="#proxy">specify an HTTP proxy</a> to use.</p>
</blockquote><h2>Starting A New Project</h2><blockquote>
<p>To start a new project with fossil, create a new empty repository
|
>
>
|
>
>
>
>
>
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
or <a href="build.wiki">build it yourself</a> from sources.
Install fossil by putting the fossil binary
someplace on your PATH environment variable.</p>
</blockquote>
<h2>Cloning A Existing Repository</h2>
<blockquote>
<p>Cloning is the first step in checking out a repository,
and is fossil's equivalent to making a local copy of a remote repository.</p>
<p>Use this command:</p>
<blockquote>
<b>fossil clone</b> <i>URL repository-filename</i>
</blockquote>
<p>The <i>URL</i> above is the http URL for the fossil repository
you want to clone. You can call the new repository anything you
want - there are no naming restrictions. As an example, you can
clone the fossil repository this way:</p>
<blockquote>
<b>fossil clone http://www.fossil-scm.org/fossil myclone.fsl</b>
</blockquote>
<p>Cloning only a local copy of the source tree (as a single file), but
not something you can directly browse. After cloning, you can access
the files in the repository using the <tt>open</tt> command,
described below</p>
<p>Note: If you are behind a restrictive firewall, you might need
to <a href="#proxy">specify an HTTP proxy</a> to use.</p>
</blockquote><h2>Starting A New Project</h2><blockquote>
<p>To start a new project with fossil, create a new empty repository
|