2009-12-25 09:30:51 +01:00
|
|
|
#ifndef RESOLVE_UNDO_H
|
|
|
|
#define RESOLVE_UNDO_H
|
|
|
|
|
|
|
|
struct resolve_undo_info {
|
|
|
|
unsigned int mode[3];
|
|
|
|
unsigned char sha1[3][20];
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void record_resolve_undo(struct index_state *, struct cache_entry *);
|
|
|
|
extern void resolve_undo_write(struct strbuf *, struct string_list *);
|
2010-02-02 07:04:03 +01:00
|
|
|
extern struct string_list *resolve_undo_read(const char *, unsigned long);
|
2009-12-25 09:30:51 +01:00
|
|
|
extern void resolve_undo_clear_index(struct index_state *);
|
2009-12-25 20:57:11 +01:00
|
|
|
extern int unmerge_index_entry_at(struct index_state *, int);
|
|
|
|
extern void unmerge_index(struct index_state *, const char **);
|
2009-12-25 09:30:51 +01:00
|
|
|
|
|
|
|
#endif
|