Skip to content

Commit 675e405

Browse files
committed
rebase -i: remove useless indentation
The commands used to be indented, and it is nice to look at, but when we transform the SHA-1s, the indentation is removed. So let's do away with it. For the moment, at least: when we will use the upcoming rebase--helper to transform the SHA-1s, we *will* keep the indentation and can reintroduce it. Yet, to be able to validate the rebase--helper against the output of the current shell script version, we need to remove the extra indentation. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent be9c724 commit 675e405

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

git-rebase--interactive.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ reschedule_last_action () {
146146
append_todo_help () {
147147
gettext "
148148
Commands:
149-
p, pick = use commit
150-
r, reword = use commit, but edit the commit message
151-
e, edit = use commit, but stop for amending
152-
s, squash = use commit, but meld into previous commit
153-
f, fixup = like \"squash\", but discard this commit's log message
154-
x, exec = run command (the rest of the line) using shell
155-
d, drop = remove commit
149+
p, pick = use commit
150+
r, reword = use commit, but edit the commit message
151+
e, edit = use commit, but stop for amending
152+
s, squash = use commit, but meld into previous commit
153+
f, fixup = like \"squash\", but discard this commit's log message
154+
x, exec = run command (the rest of the line) using shell
155+
d, drop = remove commit
156156
157157
These lines can be re-ordered; they are executed from top to bottom.
158158
" | git stripspace --comment-lines >>"$todo"

0 commit comments

Comments
 (0)