The fossil open command extracts the files from a repository. It's usually simplest to create a subfolder under the folder with the fossil repository to hold the project.
Opening a fossil project
How to do it...
Download the fossil repository:
$ fossil clone http://example.com/ProjectName project.fossil
Make a new folder for your working directory and change to it:
$ mkdir newFeature $ cd newFeature
Open the repository in your working folder:
$ fossil open ../project.fossil
How it works...
The fossil open command extracts all the folders, subfolders, and files that have been checked into the...