Bunco Simulator

Update of "How to use Fossil with this repo"
Overview

Artifact ID: 6975e9e7a6dc0e782f30724a69693e9f3d4c57a2745839b2e8aed5594dd76e2c
Page Name:How to use Fossil with this repo
Date: 2018-11-18 23:46:33
Original User: joel
Content

You can “use” this repo by clicking around these web pages, reading code, wiki pages, etc.

But you can also use Fossil to check out a version-controlled copy of the code. Below are instructions for getting started quickly. The instructions assume you are familiar with the concepts of version control.

  1. If you don’t already have it, download the Fossil executable and put it on your $PATH
  2. Clone this repository:
    > fossil clone -u https://thenotepad.org/repos/bunco bunco.fossil
  3. You might as well set autosync to 0 (off) or to pullonly. (See below for more info about why):
    > fossil settings autosync 0
  4. “Check out” the latest version of the source code into your current directory:
    > fossil open myclone.fossil
  5. Fiddle with the source code as you see fit. Read Fossil Quick Start.
  6. You can also open the web UI for your local copy:
    > fossil ui
  7. To get the latest version of the code:
    > fossil pull

Some tips for Git users