Skip to content

Commit 275cfde

Browse files
committed
update commitgraph information
1 parent b8bd4e6 commit 275cfde

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,17 @@ become available.
171171
* handle git index files for primary use by the git-repository while crafting new commits
172172
* [ ] API documentation with examples
173173

174-
### git-bundle
175-
* [ ] create a bundle from an archive
176-
* [ ] extract a branch from a bundle into a repository
174+
### git-commitgraph
175+
* [x] read-only access
176+
* [x] Graph lookup of commit information to obtain timestamps, generation and parents, and extra edges
177+
* [ ] Bloom filter index
178+
* [ ] Bloom filter data
179+
* [ ] create and update graphs and graph files
180+
* [ ] API documentation with examples
181+
182+
### git-config
183+
* read and write git configuration files
184+
* [ ] API documentation with examples
177185

178186
### git-repository
179187
* [x] initialize
@@ -196,15 +204,9 @@ become available.
196204
* [ ] Use _Commit Graph_ to speed up certain queries
197205
* [ ] API documentation with examples
198206

199-
### git-commitgraph
200-
* [x] read-only access
201-
* [x] Graph lookup of commit information to obtain timestamps, generation and parents
202-
* [ ] create and update graphs and graph files
203-
* [ ] API documentation with examples
204-
205-
### git-config
206-
* read and write git configuration files
207-
* [ ] API documentation with examples
207+
### git-bundle
208+
* [ ] create a bundle from an archive
209+
* [ ] extract a branch from a bundle into a repository
208210

209211
### git-ref
210212
* Handle symbolic references and packed references

git-commitgraph/src/file/commit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ quick_error! {
3939
}
4040

4141
// Note that git's commit-graph-format.txt as of v2.28.0 gives an incorrect value 0x0700_0000 for
42-
// NO_PARENT.
42+
// NO_PARENT. Fixed in https://github.com/git/git/commit/4d515253afcef985e94400adbfed7044959f9121 .
4343
const NO_PARENT: u32 = 0x7000_0000;
4444
const EXTENDED_EDGES_MASK: u32 = 0x8000_0000;
4545

0 commit comments

Comments
 (0)