Staging
v0.5.1
https://github.com/git/git
Revision f3f778df6900881a7bac409c927931c32b82bcb5 authored by Junio C Hamano on 28 December 2011, 19:49:09 UTC, committed by Junio C Hamano on 28 December 2011, 20:03:24 UTC
Contains accumulated fixes since 1.7.8 that have been merged to the
'master' branch in preparation for the 1.7.9 release.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9a8e485
Raw File
Tip revision: f3f778df6900881a7bac409c927931c32b82bcb5 authored by Junio C Hamano on 28 December 2011, 19:49:09 UTC
Git 1.7.8.2
Tip revision: f3f778d
sequencer.c
#include "cache.h"
#include "sequencer.h"
#include "strbuf.h"
#include "dir.h"

void remove_sequencer_state(void)
{
	struct strbuf seq_dir = STRBUF_INIT;

	strbuf_addf(&seq_dir, "%s", git_path(SEQ_DIR));
	remove_dir_recursively(&seq_dir, 0);
	strbuf_release(&seq_dir);
}
back to top