git-rebase--interactive: clarify arguments

Up to now each command took a commit as its first argument and ignored the rest of the line (usually the subject of the commit) Now that we are about to introduce commands that take different arguments, clarify each command by giving the argument list. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Stefan Beller committed Apr 25, 2018 at 14:28 UTC f431d73d9c9a4ee16df2f7ef66abe518c77c73d6
1 file changed +7 -7
git-rebase--interactive.sh
+7 -7
@@ -155,13 +155,13 @@ reschedule_last_action () {
155 append_todo_help () {
156 gettext "
157 Commands:
158 -p, pick = use commit
159 -r, reword = use commit, but edit the commit message
160 -e, edit = use commit, but stop for amending
161 -s, squash = use commit, but meld into previous commit
162 -f, fixup = like \"squash\", but discard this commit's log message
163 -x, exec = run command (the rest of the line) using shell
164 -d, drop = remove commit
158 +p, pick <commit> = use commit
159 +r, reword <commit> = use commit, but edit the commit message
160 +e, edit <commit> = use commit, but stop for amending
161 +s, squash <commit> = use commit, but meld into previous commit
162 +f, fixup <commit> = like \"squash\", but discard this commit's log message
163 +x, exec <commit> = run command (the rest of the line) using shell
164 +d, drop <commit> = remove commit
165
166 These lines can be re-ordered; they are executed from top to bottom.
167 " | git stripspace --comment-lines >>"$todo"