https://github.com/git/git
Raw File
Tip revision: f29ac4f1b04c9cf84509e4a80f27f10b4373a446 authored by Junio C Hamano on 25 April 2009, 05:54:40 UTC
GIT 1.6.3-rc2
Tip revision: f29ac4f
rerere.h
#ifndef RERERE_H
#define RERERE_H

#include "string-list.h"

extern int setup_rerere(struct string_list *);
extern int rerere(void);
extern const char *rerere_path(const char *hex, const char *file);
extern int has_rerere_resolution(const char *hex);

#endif
back to top