Staging
v0.5.1
https://github.com/git/git
Revision 6db5c6e43dccb380ca6e9947777985eb11248c31 authored by Junio C Hamano on 13 January 2012, 07:43:28 UTC, committed by Junio C Hamano on 13 January 2012, 07:43:28 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 478c446
Raw File
Tip revision: 6db5c6e43dccb380ca6e9947777985eb11248c31 authored by Junio C Hamano on 13 January 2012, 07:43:28 UTC
Git 1.7.9-rc1
Tip revision: 6db5c6e
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