diff --git a/pages/linux/fossil-delete.md b/pages/linux/fossil-delete.md new file mode 100644 index 0000000000..6ad6ecdf75 --- /dev/null +++ b/pages/linux/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil delete + +> This command is an alias of `fossil rm`. +> More information: . + +- View documentation for the original command: + +`tldr fossil rm` diff --git a/pages/linux/fossil-forget.md b/pages/linux/fossil-forget.md new file mode 100644 index 0000000000..50f6f67332 --- /dev/null +++ b/pages/linux/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil forget + +> This command is an alias of `fossil rm`, with the exception that it never removes files from the disk. +> More information: . + +- View documentation for the original command: + +`tldr fossil rm` diff --git a/pages/linux/fossil-rm.md b/pages/linux/fossil-rm.md new file mode 100644 index 0000000000..6eefc30e16 --- /dev/null +++ b/pages/linux/fossil-rm.md @@ -0,0 +1,17 @@ +# fossil rm + +> Remove files or directories from Fossil version control. +> See also `fossil forget`. +> More information: . + +- 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`