| 245 | } |
| 246 | |
| 247 | static int cmd_reflog_exists(struct ref_store *refs, const char **argv) |
| 248 | { |
| 249 | const char *refname = notnull(*argv++, "refname"); |
| 250 | |
| 251 | return !refs_reflog_exists(refs, refname); |
| 252 | } |
| 253 | |
| 254 | static int cmd_create_reflog(struct ref_store *refs, const char **argv) |
| 255 | { |
nothing calls this directly
no test coverage detected