blob: e3877acd5838b970bf9206306aa36821d39acddf [file] [log] [blame]
Elijah Newrend4ff2072023-04-22 20:17:15 +00001#ifndef MATCH_TREES_H
2#define MATCH_TREES_H
3
4struct object_id;
5struct repository;
6
7void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
8void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
9
10#endif /* MATCH_TREES_H */