From 31e64c21d97bb10ffa0114d53a4876ff31077dc7 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 24 Jan 2021 15:45:07 -0800 Subject: [PATCH 1/2] git-diff and git-status have much in common --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72a452cff89..df709d0c51c 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ become available. * [x] API documentation * [ ] Some examples -### git-diff +### git-diff / git-status * diffing of git-object::Tree structures * diffing, merging, working with hunks of data * find differences between various states, i.e. index, working tree, commit-tree From 9e525a6ee471077ee2635705a303515b706650f8 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 24 Jan 2021 15:46:30 -0800 Subject: [PATCH 2/2] Document parallel stat calls Needed for parity with git, which already does this. libgit2 does not. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index df709d0c51c..c4006735fd0 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ become available. * diffing of git-object::Tree structures * diffing, merging, working with hunks of data * find differences between various states, i.e. index, working tree, commit-tree + * Parallel stat calls to check/update objects in index * [ ] API documentation with examples ### git-features