git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Git thinks a failing command doesn't exist
@ 2010-08-11 19:12 Ævar Arnfjörð Bjarmason
  2010-08-11 19:25 ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2010-08-11 19:12 UTC (permalink / raw)
  To: Git Mailing List

Has this been noted before:

    $ git rebase --continue
    .: 986: Can't open /home/avar/g/git/.git/rebase-merge/author-script
    git: 'rebase' is not a git command. See 'git --help'.
    Did you mean this?
            rebase

Rebase failed, but the help mechanism seems to just test the exit
code, or something similar.

Perhaps help_unknown_cmd could just check if the command it's
suggesting == what it says doesn't exist, if so the command probably
failed, but maybe there's a better solution.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git thinks a failing command doesn't exist
  2010-08-11 19:12 Git thinks a failing command doesn't exist Ævar Arnfjörð Bjarmason
@ 2010-08-11 19:25 ` Jeff King
  2010-08-11 19:45   ` Ævar Arnfjörð Bjarmason
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff King @ 2010-08-11 19:25 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason; +Cc: Git Mailing List

On Wed, Aug 11, 2010 at 07:12:38PM +0000, Ævar Arnfjörð Bjarmason wrote:

> Has this been noted before:
> 
>     $ git rebase --continue
>     .: 986: Can't open /home/avar/g/git/.git/rebase-merge/author-script
>     git: 'rebase' is not a git command. See 'git --help'.
>     Did you mean this?
>             rebase
> 
> Rebase failed, but the help mechanism seems to just test the exit
> code, or something similar.

Which git version and which platform? There is code in run-command to
check for an exit code of 127 (which is what posix shells should produce
for a missing command), and to set ENOENT in that case, which is what
execv_dashed_external notices for a missing command.

So either your shell is producing that exit code for a different case,
or git is broken.

-Peff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git thinks a failing command doesn't exist
  2010-08-11 19:25 ` Jeff King
@ 2010-08-11 19:45   ` Ævar Arnfjörð Bjarmason
  2010-08-11 19:48     ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2010-08-11 19:45 UTC (permalink / raw)
  To: Jeff King; +Cc: Git Mailing List

On Wed, Aug 11, 2010 at 19:25, Jeff King <peff@peff.net> wrote:
> On Wed, Aug 11, 2010 at 07:12:38PM +0000, Ævar Arnfjörð Bjarmason wrote:
>
>> Has this been noted before:
>>
>>     $ git rebase --continue
>>     .: 986: Can't open /home/avar/g/git/.git/rebase-merge/author-script
>>     git: 'rebase' is not a git command. See 'git --help'.
>>     Did you mean this?
>>             rebase
>>
>> Rebase failed, but the help mechanism seems to just test the exit
>> code, or something similar.
>
> Which git version and which platform? There is code in run-command to
> check for an exit code of 127 (which is what posix shells should produce
> for a missing command), and to set ENOENT in that case, which is what
> execv_dashed_external notices for a missing command.

It's 1.7.2.1.295.gdf931 on Debian testing. Which is pu as it was on
midnight UTC (I build it from cron) + these patches (which shouldn't
matter):

    # Monkeypatches

                  git cherry-pick 041bc904d2 # t/lib-git-svn.sh: use
$PERL_PATH for perl, not perl from $PATH
    git cherry-pick 855a1f8836 # commit: fix test broken by
jn/commit-no-change-wo-status
    git revert --no-edit 48e46574e6 # rebase -i: add exec command to
launch a shell command

> So either your shell is producing that exit code for a different case,
> or git is broken.

My shell is Debian /bin/dash 0.5.5.1-6.

Unfortunately the error with rebase was some one-off thing that I
couldn't reproduce. I'm not even sure /what/ I did to make it happen.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git thinks a failing command doesn't exist
  2010-08-11 19:45   ` Ævar Arnfjörð Bjarmason
@ 2010-08-11 19:48     ` Jeff King
  2010-08-11 20:10       ` Ævar Arnfjörð Bjarmason
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff King @ 2010-08-11 19:48 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason; +Cc: Git Mailing List

On Wed, Aug 11, 2010 at 07:45:14PM +0000, Ævar Arnfjörð Bjarmason wrote:

> > So either your shell is producing that exit code for a different case,
> > or git is broken.
> 
> My shell is Debian /bin/dash 0.5.5.1-6.

Hmm, I can't reproduce here, and I am also using dash as my shell.

> Unfortunately the error with rebase was some one-off thing that I
> couldn't reproduce. I'm not even sure /what/ I did to make it happen.

OK. The code is _supposed_ to work as you expected, so if it happens
again, I guess try to reproduce and we'll go from there.

-Peff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Git thinks a failing command doesn't exist
  2010-08-11 19:48     ` Jeff King
@ 2010-08-11 20:10       ` Ævar Arnfjörð Bjarmason
  0 siblings, 0 replies; 5+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2010-08-11 20:10 UTC (permalink / raw)
  To: Jeff King; +Cc: Git Mailing List

On Wed, Aug 11, 2010 at 19:48, Jeff King <peff@peff.net> wrote:
> On Wed, Aug 11, 2010 at 07:45:14PM +0000, Ævar Arnfjörð Bjarmason wrote:
>
>> > So either your shell is producing that exit code for a different case,
>> > or git is broken.
>>
>> My shell is Debian /bin/dash 0.5.5.1-6.
>
> Hmm, I can't reproduce here, and I am also using dash as my shell.
>
>> Unfortunately the error with rebase was some one-off thing that I
>> couldn't reproduce. I'm not even sure /what/ I did to make it happen.
>
> OK. The code is _supposed_ to work as you expected, so if it happens
> again, I guess try to reproduce and we'll go from there.

git-rebase must have exited with a code of 127. I tried every exit
code from 1 to 255, and 127 is the only one that does this:

$ head -n2 git-rebase
#!/bin/sh
exit 127

$ ./git rebase --continue
git: 'rebase' is not a git command. See 'git --help'.

Did you mean this?
        rebase

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-08-11 20:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-11 19:12 Git thinks a failing command doesn't exist Ævar Arnfjörð Bjarmason
2010-08-11 19:25 ` Jeff King
2010-08-11 19:45   ` Ævar Arnfjörð Bjarmason
2010-08-11 19:48     ` Jeff King
2010-08-11 20:10       ` Ævar Arnfjörð Bjarmason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).