aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-rebase.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-01-29 16:02:59 -0800
committerJunio C Hamano <gitster@pobox.com>2024-01-29 16:02:59 -0800
commita0003a549011a9d6b24c77712c88f915f0e290e9 (patch)
tree1050a4e821d3bd3b98d7b18664a728e82b21028d /Documentation/git-rebase.txt
parentcf58f5920d4fa80f5a216fbc640d3f230754f65f (diff)
parentf10031fadd92e1937c7fae0e9a44801d9f832e9e (diff)
downloadgit-a0003a549011a9d6b24c77712c88f915f0e290e9.tar.gz
Merge branch 'nb/rebase-x-shell-docfix'
Doc update. * nb/rebase-x-shell-docfix: rebase: fix documentation about used shell in -x
Diffstat (limited to 'Documentation/git-rebase.txt')
-rw-r--r--Documentation/git-rebase.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt
index 8a8d32161b..06206521fc 100644
--- a/Documentation/git-rebase.txt
+++ b/Documentation/git-rebase.txt
@@ -966,10 +966,9 @@ The interactive rebase will stop when a command fails (i.e. exits with
non-0 status) to give you an opportunity to fix the problem. You can
continue with `git rebase --continue`.
-The "exec" command launches the command in a shell (the one specified
-in `$SHELL`, or the default shell if `$SHELL` is not set), so you can
-use shell features (like "cd", ">", ";" ...). The command is run from
-the root of the working tree.
+The "exec" command launches the command in a shell (the default one, usually
+/bin/sh), so you can use shell features (like "cd", ">", ";" ...). The command
+is run from the root of the working tree.
----------------------------------
$ git rebase -i --exec "make test"