Update cheatsheets

This commit is contained in:
ivuorinen
2025-05-27 00:19:48 +00:00
parent 7b30c71887
commit 03f282e95b
7 changed files with 136 additions and 3 deletions

View File

@@ -21,3 +21,11 @@ source: https://github.com/tldr-pages/tldr.git
- List all root nodes found:
`git fsck --root`
- Show all unreachable and dangling objects, ignore reflogs, and perform a full integrity check:
`git fsck --dangling --no-reflogs --unreachable --full`
- Check connectivity only (skip object integrity verification):
`git fsck --connectivity-only`