| 1 | #ifndef MATCH_TREES_H |
| 2 | #define MATCH_TREES_H |
| 3 | |
| 4 | struct object_id; |
| 5 | struct repository; |
| 6 | |
| 7 | void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int); |
| 8 | void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *); |
| 9 | |
| 10 | #endif /* MATCH_TREES_H */ |