diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-07-30 20:26:15 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-30 23:31:39 -0700 |
commit | 076b0adcf9dac7bd9d18624087f679cc811aeb77 (patch) | |
tree | 99b9d07f74b648b5353a56350247b929efa7acde /unpack-trees.h | |
parent | 16da134b1f9b0fbd1d328999875d34d02e5470b4 (diff) | |
download | git-076b0adcf9dac7bd9d18624087f679cc811aeb77.tar.gz |
read-tree: move merge functions to the library
This will allow merge-recursive to use the read-tree functionality
without exec()ing git-read-tree.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'unpack-trees.h')
-rw-r--r-- | unpack-trees.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unpack-trees.h b/unpack-trees.h index 38af89a6b7..c4601621cd 100644 --- a/unpack-trees.h +++ b/unpack-trees.h @@ -27,4 +27,9 @@ struct unpack_trees_options { extern int unpack_trees(struct object_list *trees, struct unpack_trees_options *options); +int threeway_merge(struct cache_entry **stages, struct unpack_trees_options *o); +int twoway_merge(struct cache_entry **src, struct unpack_trees_options *o); +int bind_merge(struct cache_entry **src, struct unpack_trees_options *o); +int oneway_merge(struct cache_entry **src, struct unpack_trees_options *o); + #endif |