Persistent key-value store backed by GIT.
This package provides a key-value store that uses GIT for the permanent storage.
```rs use gitmap::Repo;
let path = Path::new("/storage/path"); let map = Repo::init(path); map.insertkey("key1", "value1".tobytes()); map.insertkey("key2", "value2".tobytes()); map.commit("First commit"); ```
rollback()