fossil*: move all fossil commands to common vs linux (#8677)

fossil commands work substantially the same on all major platforms.
This commit is contained in:
dz-at-tc
2022-10-02 22:42:44 -04:00
committed by GitHub
parent 6fb2422d7f
commit fa35e2d8d4
9 changed files with 0 additions and 0 deletions

View File

@@ -1,12 +0,0 @@
# fossil add
> Put files or directories under Fossil version control.
> More information: <https://fossil-scm.org/home/help/add>.
- Put a file or directory under version control, so it will be in the current checkout:
`fossil add {{path/to/file_or_directory}}`
- Remove all added files from the current checkout:
`fossil add --reset`

View File

@@ -1,8 +0,0 @@
# fossil ci
> This command is an alias of `fossil commit`.
> More information: <https://fossil-scm.org/home/help/commit>.
- View documentation for the original command:
`tldr fossil-commit`

View File

@@ -1,20 +0,0 @@
# fossil commit
> Commit files to a Fossil repository.
> More information: <https://fossil-scm.org/home/help/commit>.
- Create a new version containing all the changes in the current checkout; user will be prompted for a comment:
`fossil commit`
- Create a new version containing all the changes in the current checkout, using the specified comment:
`fossil commit --comment "{{comment}}"`
- Create a new version containing all the changes in the current checkout with a comment read from a specific file:
`fossil commit --message-file {{path/to/commit_message_file}}`
- Create a new version containing changes from the specified files; user will be prompted for a comment:
`fossil commit {{path/to/file1}} {{path/to/file2}}`

View File

@@ -1,8 +0,0 @@
# fossil delete
> This command is an alias of `fossil rm`.
> More information: <https://fossil-scm.org/home/help>.
- View documentation for the original command:
`tldr fossil rm`

View File

@@ -1,8 +0,0 @@
# fossil forget
> This command is an alias of `fossil rm`, with the exception that it never removes files from the disk.
> More information: <https://fossil-scm.org/home/help>.
- View documentation for the original command:
`tldr fossil rm`

View File

@@ -1,17 +0,0 @@
# fossil rm
> Remove files or directories from Fossil version control.
> See also `fossil forget`.
> More information: <https://fossil-scm.org/home/help>.
- Remove a file or directory from Fossil version control:
`fossil rm {{path/to/file_or_directory}}`
- Remove a file or directory from Fossil version control, and also delete it from the disk:
`fossil rm --hard {{path/to/file_or_directory}}`
- Re-add all previously removed and uncommitted files to Fossil version control:
`fossil rm --reset`

View File

@@ -1,21 +0,0 @@
# fossil
> Distributed version control system.
> Some subcommands such as `fossil commit` have their own usage documentation.
> More information: <https://fossil-scm.org/>.
- Check the Fossil version:
`fossil version`
- Show general help (list available subcommands):
`fossil help`
- Show help on a Fossil subcommand (like `add`, `commit`, etc.):
`fossil help {{subcommand}}`
- Execute a Fossil subcommand:
`fossil {{subcommand}}`