1
0
mirror of https://github.com/git/git.git synced 2024-09-28 10:00:54 +02:00
git/sequencer.c

14 lines
271 B
C
Raw Normal View History

#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);
}