From 95196629e5d72a9c5008a750a60c20d4c6e2b4c0 Mon Sep 17 00:00:00 2001 From: Derrick Ampire Date: Sat, 6 Jul 2024 12:20:21 +0300 Subject: [PATCH] git verify-pack: add page (#13214) --- pages/common/git-verify-pack.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/git-verify-pack.md diff --git a/pages/common/git-verify-pack.md b/pages/common/git-verify-pack.md new file mode 100644 index 0000000000..8413afccef --- /dev/null +++ b/pages/common/git-verify-pack.md @@ -0,0 +1,16 @@ +# git verify-pack + +> Verify packed Git archive files. +> More information: . + +- Verify a packed Git archive file: + +`git verify-pack {{path/to/pack-file}}` + +- Verify a packed Git archive file and show verbose details: + +`git verify-pack --verbose {{path/to/pack-file}}` + +- Verify a packed Git archive file and only display the statistics: + +`git verify-pack --stat-only {{path/to/pack-file}}`