logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Validate Git Repository - Check Integrity with git fsck | Online Free DevTools by Hexmos

Validate Git repository integrity with git fsck. Verify the validity and connectivity of nodes. Free online tool, no registration required.

git-fsck

Verify the validity and connectivity of nodes in a Git repository index. Does not make any modifications. See also: git gc for cleaning up dangling blobs. More information: https://git-scm.com/docs/git-fsck.

  • Check the current repository:

git fsck

  • List all tags found:

git fsck --tags

  • 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

See Also