summaryrefslogtreecommitdiff
path: root/tests/config/memory.c
Commit message (Collapse)AuthorAgeFilesLines
* config: Refactor `git_config_backend_from_string` to take a lengthNelson Elhage2018-10-091-3/+4
|
* config: introduce new read-only in-memory backendPatrick Steinhardt2018-09-281-0/+138
Now that we have abstracted away how to store and retrieve config entries, it became trivial to implement a new in-memory backend by making use of this. And thus we do so. This commit implements a new read-only in-memory backend that can parse a chunk of memory into a `git_config_backend` structure.