git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error
@ 2008-01-06 15:46 Steffen Prohaska
  2008-01-06 17:33 ` Wincent Colaiuta
  0 siblings, 1 reply; 4+ messages in thread
From: Steffen Prohaska @ 2008-01-06 15:46 UTC (permalink / raw)
  To: git; +Cc: Steffen Prohaska

rebase interactive asks the user to fix unknown commands but it did not
tell how to continue.

This commits adds a hint how to continue.

Signed-off-by: Steffen Prohaska <prohaska@zib.de>
---
 git-rebase--interactive.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index acdcc54..d4bd811 100755
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -310,7 +310,7 @@ do_next () {
 		;;
 	*)
 		warn "Unknown command: $command $sha1 $rest"
-		die_with_patch $sha1 "Please fix this in the file $TODO."
+		die_with_patch $sha1 "Please fix this in the file $TODO. And run 'git rebase --continue'."
 		;;
 	esac
 	test -s "$TODO" && return
-- 
1.5.4.rc2.26.g1deb

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

* Re: [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error
  2008-01-06 15:46 [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error Steffen Prohaska
@ 2008-01-06 17:33 ` Wincent Colaiuta
  2008-01-06 19:50   ` David Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Wincent Colaiuta @ 2008-01-06 17:33 UTC (permalink / raw)
  To: Steffen Prohaska; +Cc: git

El 6/1/2008, a las 16:46, Steffen Prohaska escribió:

> @@ -310,7 +310,7 @@ do_next () {
> 		;;
> 	*)
> 		warn "Unknown command: $command $sha1 $rest"
> -		die_with_patch $sha1 "Please fix this in the file $TODO."
> +		die_with_patch $sha1 "Please fix this in the file $TODO. And run  
> 'git rebase --continue'."

Grammar nit: sentences can't start with "And", so that should really be:

"Please fix this in the file $TODO and run 'git rebase --continue'."

Cheers,
Wincent

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

* Re: [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error
  2008-01-06 17:33 ` Wincent Colaiuta
@ 2008-01-06 19:50   ` David Brown
  2008-01-06 20:14     ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: David Brown @ 2008-01-06 19:50 UTC (permalink / raw)
  To: Wincent Colaiuta; +Cc: Steffen Prohaska, git

On Sun, Jan 06, 2008 at 06:33:32PM +0100, Wincent Colaiuta wrote:
>El 6/1/2008, a las 16:46, Steffen Prohaska escribió:
>
>> @@ -310,7 +310,7 @@ do_next () {
>> 		;;
>> 	*)
>> 		warn "Unknown command: $command $sha1 $rest"
>> -		die_with_patch $sha1 "Please fix this in the file $TODO."
>> +		die_with_patch $sha1 "Please fix this in the file $TODO. And run  
>> 'git rebase --continue'."
>
>Grammar nit: sentences can't start with "And", so that should really be:

Not true:
<http://www.accu-assist.com/grammar-tips-archive/11-07-06_GrammarTip_and-but-conjunctions.htm>

Although, in this case, I would agree that it should just be one sentence
with a comma.  It's more of a stylistic construct, more common in fiction
than technical documentation.

Dave

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

* Re: [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error
  2008-01-06 19:50   ` David Brown
@ 2008-01-06 20:14     ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2008-01-06 20:14 UTC (permalink / raw)
  To: Wincent Colaiuta; +Cc: Steffen Prohaska, git

David Brown <git@davidb.org> writes:

> On Sun, Jan 06, 2008 at 06:33:32PM +0100, Wincent Colaiuta wrote:
>>El 6/1/2008, a las 16:46, Steffen Prohaska escribió:
>>
>>> @@ -310,7 +310,7 @@ do_next () {
>>> 		;;
>>> 	*)
>>> 		warn "Unknown command: $command $sha1 $rest"
>>> -		die_with_patch $sha1 "Please fix this in the file $TODO."
>>> +		die_with_patch $sha1 "Please fix this in the file
>>> $TODO. And run  'git rebase --continue'."
>>
>>Grammar nit: sentences can't start with "And", so that should really be:
>
> Not true:
> <http://www.accu-assist.com/grammar-tips-archive/11-07-06_GrammarTip_and-but-conjunctions.htm>
>
> Although, in this case, I would agree that it should just be one sentence
> with a comma.  It's more of a stylistic construct, more common in fiction
> than technical documentation.

I've always wondered why this part can't just re-launch the
editor with the $TODO file, have the instruction to "fix" in the
file for the user to see (together with the original "#
commented out" instructions), and do the --continue itself.

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

end of thread, other threads:[~2008-01-06 20:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-06 15:46 [PATCH] rebase interactive: Add hint how to continue after 'Unknown command' error Steffen Prohaska
2008-01-06 17:33 ` Wincent Colaiuta
2008-01-06 19:50   ` David Brown
2008-01-06 20:14     ` Junio C Hamano

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).