fossil-ci
shorthand for fossil commit
TLDR
Commit changes
$ fossil ci -m "[message]"
Commit with comment editor$ fossil ci
Commit specific files$ fossil ci [file1] [file2] -m "[message]"
Commit with branch$ fossil ci --branch [branch_name] -m "[message]"
SYNOPSIS
fossil ci [options] [files...]
DESCRIPTION
fossil ci is a shorthand alias for fossil commit. It records changes in the working directory to the repository with a commit message.This command is provided for convenience and compatibility with users familiar with other version control systems that use similar abbreviations. All options and behaviors are identical to fossil commit.
PARAMETERS
-m, --comment text
Commit message.--branch name
Create new branch.--private
Make commit private.--allow-empty
Allow empty commit.
INSTALL
sudo apt install fossil
sudo dnf install fossil
sudo pacman -S fossil
sudo apk add fossil
sudo zypper install fossil
brew install fossil
nix profile install nixpkgs#fossil
SEE ALSO
fossil-commit(1), fossil-add(1)
