From 2afa16bcb5797273bc296fcd47c5bde22b035f2a Mon Sep 17 00:00:00 2001 From: Derrick Ampire Date: Tue, 2 Jul 2024 12:21:13 +0300 Subject: [PATCH 1/5] Add: git verify-pack command added --- pages/common/git-verify-pack.md | 8 ++++++++ 1 file changed, 8 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 0000000000000..b86dba0be412c --- /dev/null +++ b/pages/common/git-verify-pack.md @@ -0,0 +1,8 @@ +# git verify-pack + +> Validate packed Git archive files. +> More information: . + +- Verify a packed Git archive file: + +`git verify-pack {{path/to/pack-file}}` From 61b78c005fbdc73087117e2f97bd7e6ddbe74ed8 Mon Sep 17 00:00:00 2001 From: Derrick Ampire Date: Tue, 2 Jul 2024 12:39:11 +0300 Subject: [PATCH 2/5] git verify-pack: add --verbose and --stat-only --- pages/common/git-verify-pack.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/common/git-verify-pack.md b/pages/common/git-verify-pack.md index b86dba0be412c..a413ab0b2e979 100644 --- a/pages/common/git-verify-pack.md +++ b/pages/common/git-verify-pack.md @@ -6,3 +6,11 @@ - 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 statistics: + +`git verify-pack --stat-only {{path/to/pack-file}}` From 55f740784455aa8922dbc4a40a859a78f2e0ccef Mon Sep 17 00:00:00 2001 From: Derrick Ampire Date: Thu, 4 Jul 2024 10:27:52 +0300 Subject: [PATCH 3/5] git verify-pack: description of the --stat-only option modified Co-authored-by: spageektti --- pages/common/git-verify-pack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-pack.md b/pages/common/git-verify-pack.md index a413ab0b2e979..619d58ad273c5 100644 --- a/pages/common/git-verify-pack.md +++ b/pages/common/git-verify-pack.md @@ -11,6 +11,6 @@ `git verify-pack --verbose {{path/to/pack-file}}` -- Verify a packed Git archive file and only display statistics: +- Verify a packed Git archive file and display only the statistics: `git verify-pack --stat-only {{path/to/pack-file}}` From 2a60a0379925d926284dd705ee64527cc22f7549 Mon Sep 17 00:00:00 2001 From: spageektti Date: Sat, 6 Jul 2024 11:15:23 +0200 Subject: [PATCH 4/5] Update pages/common/git-verify-pack.md Co-authored-by: Juri Dispan --- pages/common/git-verify-pack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-pack.md b/pages/common/git-verify-pack.md index 619d58ad273c5..dc8feb949b78b 100644 --- a/pages/common/git-verify-pack.md +++ b/pages/common/git-verify-pack.md @@ -1,6 +1,6 @@ # git verify-pack -> Validate packed Git archive files. +> Verify packed Git archive files. > More information: . - Verify a packed Git archive file: From 90b823d1080607e8d942369061cd2b3e9ae46bbf Mon Sep 17 00:00:00 2001 From: spageektti Date: Sat, 6 Jul 2024 11:15:30 +0200 Subject: [PATCH 5/5] Update pages/common/git-verify-pack.md Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> --- pages/common/git-verify-pack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-pack.md b/pages/common/git-verify-pack.md index dc8feb949b78b..8413afccef639 100644 --- a/pages/common/git-verify-pack.md +++ b/pages/common/git-verify-pack.md @@ -11,6 +11,6 @@ `git verify-pack --verbose {{path/to/pack-file}}` -- Verify a packed Git archive file and display only the statistics: +- Verify a packed Git archive file and only display the statistics: `git verify-pack --stat-only {{path/to/pack-file}}`