Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-26 00:18:47 +00:00
parent 9b06c2023f
commit 47db9e503e
127 changed files with 302 additions and 302 deletions

View File

@@ -14,16 +14,16 @@ source: https://github.com/tldr-pages/tldr.git
- Remove all staged files matching a specified pattern:
`hg remove --include {{pattern}}`
`hg remove {{[-I|--include]}} {{pattern}}`
- Remove all staged files, excluding those that match a specified pattern:
`hg remove --exclude {{pattern}}`
`hg remove {{[-X|--exclude]}} {{pattern}}`
- Recursively remove sub-repositories:
`hg remove --subrepos`
`hg remove {{[-S|--subrepos]}}`
- Remove files from the repository that have been physically removed:
`hg remove --after`
`hg remove {{[-A|--after]}}`