LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

fossil-ci

shorthand for fossil commit

TLDR

Commit changes
$ fossil ci -m "[message]"
copy
Commit with comment editor
$ fossil ci
copy
Commit specific files
$ fossil ci [file1] [file2] -m "[message]"
copy
Commit with branch
$ fossil ci --branch [branch_name] -m "[message]"
copy

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.

SEE ALSO

Copied to clipboard
Kai