Linux command
fossil-ci 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
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]"
说明
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.
参数
- -m, --comment _text_
- Commit message.
- --branch _name_
- Create new branch.
- --private
- Make commit private.
- --allow-empty
- Allow empty commit.
FAQ
What is the fossil-ci command used for?
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.
How do I run a basic fossil-ci example?
Run `fossil ci -m "[message]"` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -m, --comment _text_ do in fossil-ci?
Commit message.