| 2464 | } |
| 2465 | |
| 2466 | void base_ref_store_init(struct ref_store *refs, struct repository *repo, |
| 2467 | const char *path, const struct ref_storage_be *be) |
| 2468 | { |
| 2469 | refs->be = be; |
| 2470 | refs->repo = repo; |
| 2471 | refs->gitdir = xstrdup(path); |
| 2472 | } |
| 2473 | |
| 2474 | int refs_optimize(struct ref_store *refs, struct refs_optimize_opts *opts) |
| 2475 | { |
no test coverage detected