Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-17 00:22:45 +00:00
parent 38ecb2b6c5
commit 42c0c33dde
259 changed files with 1079 additions and 386 deletions

View File

@@ -24,6 +24,10 @@ source: https://github.com/tldr-pages/tldr.git
`git blame {{commit}}~ {{path/to/file}}`
- Jump to the parent of a specific commit and track a specific text and 10 of its following lines:
`git blame -L '/{{text}}/',+10 {{a82812aa}}^ tldr.py`
- Print author name and commit hash information for a specific line range:
`git blame -L {{start_line}},{{end_line}} {{path/to/file}}`