From dab07322d77864e4e3ccd78d8aebeecf618e6a07 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 30 Mar 2020 19:52:36 +0100 Subject: [PATCH 1/2] git fsck: add page --- pages/common/git-fsck.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/git-fsck.md diff --git a/pages/common/git-fsck.md b/pages/common/git-fsck.md new file mode 100644 index 00000000000000..07b468ef51cf4d --- /dev/null +++ b/pages/common/git-fsck.md @@ -0,0 +1,17 @@ +# git fsck + +> Verify the validity and connectivity of nodes in a git repository index. +> Does make any modifications. See `git gc` for cleaning up dangling blobs. +> More information: . + +- Check the current repository: + +`git fsck` + +- List all tags found: + +`git fsck --tags` + +- List all root nodes found: + +`git fsck --root` From 15258b82360be3521d5089dd6644ef2d3e1fd39d Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 1 Apr 2020 01:39:47 +0100 Subject: [PATCH 2/2] Update git-fsck.md --- pages/common/git-fsck.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/git-fsck.md b/pages/common/git-fsck.md index 07b468ef51cf4d..170399258fb694 100644 --- a/pages/common/git-fsck.md +++ b/pages/common/git-fsck.md @@ -1,7 +1,7 @@ # git fsck -> Verify the validity and connectivity of nodes in a git repository index. -> Does make any modifications. See `git gc` for cleaning up dangling blobs. +> Verify the validity and connectivity of nodes in a Git repository index. +> Does not make any modifications. See `git gc` for cleaning up dangling blobs. > More information: . - Check the current repository: