Staging
v0.5.1
https://github.com/git/git
Revision 06214d171b10e9474a0233dbc5187fd6b109ff2a authored by Johannes Schindelin on 12 February 2021, 14:49:50 UTC, committed by Johannes Schindelin on 12 February 2021, 14:49:50 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 92ac04b
Raw File
Tip revision: 06214d171b10e9474a0233dbc5187fd6b109ff2a authored by Johannes Schindelin on 12 February 2021, 14:49:50 UTC
Git 2.24.4
Tip revision: 06214d1
rebase-interactive.h
#ifndef REBASE_INTERACTIVE_H
#define REBASE_INTERACTIVE_H

struct strbuf;
struct repository;
struct todo_list;

void append_todo_help(unsigned keep_empty, 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);

#endif
back to top