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

@@ -18,16 +18,16 @@ source: https://github.com/tldr-pages/tldr.git
- Commit with a specific message:
`hg commit --message {{message}}`
`hg commit {{[-m|--message]}} {{message}}`
- Commit all files matching a specified pattern:
`hg commit --include {{pattern}}`
`hg commit {{[-I|--include]}} {{pattern}}`
- Commit all files, excluding those that match a specified pattern:
`hg commit --exclude {{pattern}}`
`hg commit {{[-X|--exclude]}} {{pattern}}`
- Commit using the interactive mode:
`hg commit --interactive`
`hg commit {{[-i|--interactive]}}`