Login
Update of ”download”
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: d28dc1260e6e6f04c029358c56b96f9b6d9bbbc7
Page Name:download
Date: 2014-02-04 20:28:52
Original User: stephan
Parent: 042b30df835167641be17b21f13603e44b2d4f9b (diff)
Next 5a914a98fcf30e08f45f59797a953c9f4863bd54
Content

Downloading this code

There are two options for downloading. Visit /leaves link in the main source repo. Then find the top-most entry for the "trunk" branch and click that. From there, you can download a zip file containing the latest checked-in source code. Downloading code for non-trunk branches is not recommended, as branches are used primarily for experimental stuff. When a branch is considered to be useful/desirable then it is merged into the trunk.

Optionally, you can use fossil:

# fossil clone \
   http://fossil.wanderinghorse.net/repos/libfossil/index.cgi \
   libfossil.fsl

(All on one line.)

That will copy the repository to libfossil.fsl, which you can then open with:

~> mkdir libfossil
~> cd libfossil
~> fossil open ../libfossil.fsl

That checks out the files under the current dir. A Makefile for GNU Make is included, but the plan is to eventually port it to the build tools used by Fossil v1.

You can keep your copy up to day by pulling the latest changes:

~> fossil pull
~> fossil update
# If autosync is enabled (it is by default) then:
#  fossil update
# is all you need