https://github.com/git/git
Raw File
Tip revision: a46034819ecce6872bff099f3d75589f4d38c00c authored by Junio C Hamano on 12 March 2012, 22:52:52 UTC
Git 1.7.9.4
Tip revision: a460348
sequencer.h
#ifndef SEQUENCER_H
#define SEQUENCER_H

#define SEQ_DIR		"sequencer"
#define SEQ_HEAD_FILE	"sequencer/head"
#define SEQ_TODO_FILE	"sequencer/todo"
#define SEQ_OPTS_FILE	"sequencer/opts"

/* Removes SEQ_DIR. */
extern void remove_sequencer_state(void);

#endif
back to top