Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-01-24 00:40:39 +0300
committerJunio C Hamano <gitster@pobox.com>2024-01-24 00:40:39 +0300
commit89163113e1084ad78b5f77a5f6614c4669ab8b12 (patch)
treec201e4caeea947a718cf80e70cd77f49fa628e37
parented33fc92cd13b7d13c9fabea92f190b399b41d8b (diff)
parentf10031fadd92e1937c7fae0e9a44801d9f832e9e (diff)
Merge branch 'nb/rebase-x-shell-docfix' into jch
Doc update. * nb/rebase-x-shell-docfix: rebase: fix documentation about used shell in -x
-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"