Revision 0dc9cad22d5c878d2ce6ee7b5cfffb034e34b2a0 authored by Junio C Hamano on 31 May 2024, 00:00:29 UTC, committed by Junio C Hamano on 31 May 2024, 00:00:29 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s f20b96a + dbecc61
Raw File
match-trees.h
#ifndef MATCH_TREES_H
#define MATCH_TREES_H

struct object_id;
struct repository;

void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);

#endif /* MATCH_TREES_H */
back to top