Downloading this code
There are two options for downloading. The first is to log in as the anonymous user and visit the latest version at /info/trunk (or click the version number of the top-most checkin in the /timeline). From somewhere near the top of that page you can download a zip or tar file containing the latest checked-in source code. (Downloading a zip requires logging in anonymously to avoid that bots scrape zip files of all historical versions.)
Optionally, you can use the Fossil SCM to clone this source code repository:
~> fossil clone https://fossil.wanderinghorse.net/r/cssminc cssminc.fsl
That will copy the repository to cssminc.fsl
, which you can then open with:
~> mkdir cssminc
~> cd cssminc
~> fossil open ../cssminc.fsl
That checks out the files under the current dir. A Makefile for GNU Make is included.
You can keep your copy up to date by pulling the latest changes:
~> fossil pull
~> fossil update
# If autosync is enabled (it is by default) then:
# fossil update
# is all you need