1#include"cache.h" 2#include"commit.h" 3#include"rebase-interactive.h" 4#include"sequencer.h" 5#include"strbuf.h" 6 7voidappend_todo_help(unsigned edit_todo,unsigned keep_empty, 8struct strbuf *buf) 9{ 10const char*msg =_("\nCommands:\n" 11"p, pick <commit> = use commit\n" 12"r, reword <commit> = use commit, but edit the commit message\n" 13"e, edit <commit> = use commit, but stop for amending\n" 14"s, squash <commit> = use commit, but meld into previous commit\n" 15"f, fixup <commit> = like\"squash\", but discard this commit's log message\n" 16"x, exec <command> = run command (the rest of the line) using shell\n" 17"b, break = stop here (continue rebase later with 'git rebase --continue')\n" 18"d, drop <commit> = remove commit\n" 19"l, label <label> = label current HEAD with a name\n" 20"t, reset <label> = reset HEAD to a label\n" 21"m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]\n" 22". create a merge commit using the original merge commit's\n" 23". message (or the oneline, if no original merge commit was\n" 24". specified). Use -c <commit> to reword the commit message.\n" 25"\n" 26"These lines can be re-ordered; they are executed from top to bottom.\n"); 27 28strbuf_add_commented_lines(buf, msg,strlen(msg)); 29 30if(get_missing_commit_check_level() == MISSING_COMMIT_CHECK_ERROR) 31 msg =_("\nDo not remove any line. Use 'drop' " 32"explicitly to remove a commit.\n"); 33else 34 msg =_("\nIf you remove a line here " 35"THAT COMMIT WILL BE LOST.\n"); 36 37strbuf_add_commented_lines(buf, msg,strlen(msg)); 38 39if(edit_todo) 40 msg =_("\nYou are editing the todo file " 41"of an ongoing interactive rebase.\n" 42"To continue rebase after editing, run:\n" 43" git rebase --continue\n\n"); 44else 45 msg =_("\nHowever, if you remove everything, " 46"the rebase will be aborted.\n\n"); 47 48strbuf_add_commented_lines(buf, msg,strlen(msg)); 49 50if(!keep_empty) { 51 msg =_("Note that empty commits are commented out"); 52strbuf_add_commented_lines(buf, msg,strlen(msg)); 53} 54} 55 56intedit_todo_list(struct repository *r,unsigned flags) 57{ 58struct strbuf buf = STRBUF_INIT; 59const char*todo_file =rebase_path_todo(); 60 61if(strbuf_read_file(&buf, todo_file,0) <0) 62returnerror_errno(_("could not read '%s'."), todo_file); 63 64strbuf_stripspace(&buf,1); 65if(write_message(buf.buf, buf.len, todo_file,0)) { 66strbuf_release(&buf); 67return-1; 68} 69 70strbuf_release(&buf); 71 72transform_todos(r, flags | TODO_LIST_SHORTEN_IDS); 73 74if(strbuf_read_file(&buf, todo_file,0) <0) 75returnerror_errno(_("could not read '%s'."), todo_file); 76 77append_todo_help(1,0, &buf); 78if(write_message(buf.buf, buf.len, todo_file,0)) { 79strbuf_release(&buf); 80return-1; 81} 82 83strbuf_release(&buf); 84 85if(launch_sequence_editor(todo_file, NULL, NULL)) 86return-1; 87 88transform_todos(r, flags & ~(TODO_LIST_SHORTEN_IDS)); 89 90return0; 91}