commands.sh

fossil

all

Distributed version control system with a built-in wiki, bug tracker, and web interface. Some subcommands such as `commit` have their own usage documentation.

More info →

Options (3)

boolean

Stage a file for removal

Example: fossil {{[rm|delete]}} {{path/to/file}}
boolean

Check in all staged changes

Example: fossil {{[ci|commit]}} {{[-m|--comment]}} "{{comment}}"
-m, --commentboolean

Check in all staged changes

Example: fossil {{[ci|commit]}} {{[-m|--comment]}} "{{comment}}"

Examples (8)

Initialize a new empty Fossil repository

fossil init repository_name.fossil

Create a local copy of a remote repository

fossil clone remote_url

Show an overview of the current repository state

fossil status

Stage a new file

fossil add path/to/file

Stage a file for removal

fossil [rm|delete] path/to/file

Check in all staged changes

fossil [ci|commit] [-m|--comment] "comment"

Push changes from the local repository to a remote repository

fossil push remote_url

Pull changes from a remote repository into the local repository

fossil pull remote_url
made by @shridhargupta | data from tldr-pages