Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: fe2268649423eba889e942293e9c98c781277bf2 authored by Junio C Hamano on 17 March 2020, 21:16:08 UTC
Git 2.21.2
Tip revision: fe22686
rebase-interactive.h
#ifndef REBASE_INTERACTIVE_H
#define REBASE_INTERACTIVE_H

struct strbuf;
struct repository;

void append_todo_help(unsigned edit_todo, unsigned keep_empty,
		      struct strbuf *buf);
int edit_todo_list(struct repository *r, unsigned flags);

#endif
back to top