11### git-actor
2-
32* [x] read and write a signature that uniquely identifies an actor within a git repository
43
54### git-hash
98 * [ ] Some examples
109
1110### git-chunk
12- * [ ] decode the chunk file table of contents and provide convenient API
13- * [ ] write the table of contents
11+ * [x ] decode the chunk file table of contents and provide convenient API
12+ * [x ] write the table of contents
1413
1514### git-object
1615* * decode (zero-copy)* borrowed objects
2827 * [ ] Some examples
2928
3029### git-pack
31-
3230* ** packs**
3331 * [x] traverse pack index
3432 * [x] 'object' abstraction
7371 * [ ] Some examples
7472
7573### git-odb
76-
7774* ** loose object store**
7875 * [x] traverse
7976 * [x] read
@@ -210,25 +207,21 @@ Check out the [performance discussion][git-traverse-performance] as well.
210207 * [ ] Some examples
211208
212209### git-attributes
213-
214210* [x] parse git-ignore files (aka git-attributes without the attributes or negation)
215211* [x] parse git-attributes files
216212* [ ] create an attributes stack, ideally one that includes 'ignored' status from .gitignore files.
217213 * [ ] support for built-in ` binary ` macro for ` -text -diff -merge `
218214
219215### git-quote
220-
221216* ** ansi-c**
222217 * [x] quote
223218 * [ ] unquote
224219
225220### git-mailmap
226-
227221* [x] parsing
228222* [x] lookup and mapping of author names
229223
230224### git-pathspec
231-
232225* [ ] parse
233226* [ ] check for match
234227
@@ -238,6 +231,10 @@ A mechanism to associate metadata with any object, and keep revisions of it usin
238231
239232* [ ] CRUD for git notes
240233
234+ ### git-glob
235+ * [x] parse pattern
236+ * [x] a type for pattern matching of paths and non-paths, optionally case-insensitively.
237+
241238### git-worktree
242239* handle the working tree/checkout
243240 - [x] checkout an index of files, executables and symlinks just as fast as git
@@ -263,7 +260,6 @@ A mechanism to associate metadata with any object, and keep revisions of it usin
263260* parse specifications into revisions (like ` git rev-parse ` )
264261
265262### git-submodule
266-
267263* CRUD for submodules
268264* try to handle with all the nifty interactions and be a little more comfortable than what git offers, lay a foundation for smarter git submodules.
269265
@@ -488,6 +484,10 @@ See its [README.md](https://github.com/Byron/gitoxide/blob/main/git-lock/README.
488484### git-tui
489485* _ a terminal user interface seeking to replace and improve on ` tig ` _
490486* Can display complex history in novel ways to make them graspable. Maybe [ this post] can be an inspiration.
487+
488+ ### git-tix
489+
490+ A re-implementation of a minimal ` tig ` like UI that aims to be fast and to the point.
491491
492492[ tagname-validation ] : https://github.com/git/git/blob/master/Documentation/technical/protocol-common.txt#L23:L23
493493[ this post ] : http://blog.danieljanus.pl/2021/07/01/commit-groups/
0 commit comments