1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 07:15:27 +02:00

git-fsck: add examples (#16601)

This commit is contained in:
Machiavelli 2025-05-26 07:16:08 +03:00 committed by GitHub
parent b3ecaeeb96
commit 22162dd66f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,3 +16,11 @@
- 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`