Staging
v0.5.1
https://github.com/git/git
Revision 90d242d36e248acfae0033274b524bfa55a947fd authored by Junio C Hamano on 10 January 2022, 19:28:51 UTC, committed by Junio C Hamano on 10 January 2022, 19:52:57 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6e22345
Raw File
Tip revision: 90d242d36e248acfae0033274b524bfa55a947fd authored by Junio C Hamano on 10 January 2022, 19:28:51 UTC
Git 2.35-rc0
Tip revision: 90d242d
rebase-interactive.h
#ifndef REBASE_INTERACTIVE_H
#define REBASE_INTERACTIVE_H

struct strbuf;
struct repository;
struct todo_list;

void append_todo_help(int command_count,
		      const char *shortrevisions, const char *shortonto,
		      struct strbuf *buf);
int edit_todo_list(struct repository *r, struct todo_list *todo_list,
		   struct todo_list *new_todo, const char *shortrevisions,
		   const char *shortonto, unsigned flags);

int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
int todo_list_check_against_backup(struct repository *r,
				   struct todo_list *todo_list);

#endif
back to top