The "get" command:
Usage: fossil get URL ?VERSION? ?OPTIONS?
Download a single check-in from a remote repository named URL and unpack all of the files locally. The check-in is identified by VERSION.
URL can be a traditional URL like one of:
- https://domain.com/project
- ssh://my-server/project.fossil
- file:/home/user/Fossils/project.fossil
Or URL can be just the name of a local repository without the "file:" prefix.
This command works by downloading an SQL archive of the requested check-in and then extracting all the files from the archive.
Options:
- --dest DIRECTORY
- Extract files into DIRECTORY. Use "--dest ." to extract into the local directory.
- -f|--force
- Overwrite existing files
- --list
- List all the files that would have been checked out but do not actually write anything to the filesystem.
- --sqlar ARCHIVE
- Store the check-out in an SQL-archive rather than unpacking them into separate files.
- -v|--verbose
- Show all files as they are extracted