| 250 | } |
| 251 | |
| 252 | void repo_set_worktree(struct repository *repo, const char *path) |
| 253 | { |
| 254 | repo->worktree = real_pathdup(path, 1); |
| 255 | |
| 256 | trace2_def_repo(repo); |
| 257 | } |
| 258 | |
| 259 | static int read_repository_format_from_commondir(struct repository_format *format, |
| 260 | const char *commondir) |
no test coverage detected