git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] wt-status: give better advice when cherry-pick is in progress
@ 2013-06-17  4:28 Ralf Thielow
  2013-06-17 19:18 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Ralf Thielow @ 2013-06-17  4:28 UTC (permalink / raw)
  To: git; +Cc: Lucien.Kong, gitster, Ralf Thielow

When cherry-pick is in progress, 'git status' gives the advice to
run "git commit" to finish the cherry-pick. However, this won't continue
the sequencer.
"git status" should give the advice of running "git cherry-pick --continue"
or "git cherry-pick --abort".

Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
---
 t/t7512-status-help.sh | 6 ++++--
 wt-status.c            | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/t/t7512-status-help.sh b/t/t7512-status-help.sh
index bf08d4e..4f09bec 100755
--- a/t/t7512-status-help.sh
+++ b/t/t7512-status-help.sh
@@ -632,7 +632,8 @@ test_expect_success 'status when cherry-picking before resolving conflicts' '
 	cat >expected <<-\EOF &&
 	# On branch cherry_branch
 	# You are currently cherry-picking.
-	#   (fix conflicts and run "git commit")
+	#   (fix conflicts and run "git cherry-pick --continue")
+	#   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
 	#
 	# Unmerged paths:
 	#   (use "git add <file>..." to mark resolution)
@@ -655,7 +656,8 @@ test_expect_success 'status when cherry-picking after resolving conflicts' '
 	cat >expected <<-\EOF &&
 	# On branch cherry_branch
 	# You are currently cherry-picking.
-	#   (all conflicts fixed: run "git commit")
+	#   (all conflicts fixed: run "git cherry-pick --continue")
+	#   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
 	#
 	# Changes to be committed:
 	#
diff --git a/wt-status.c b/wt-status.c
index bf84a86..438a40d 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -955,10 +955,12 @@ static void show_cherry_pick_in_progress(struct wt_status *s,
 	if (advice_status_hints) {
 		if (has_unmerged(s))
 			status_printf_ln(s, color,
-				_("  (fix conflicts and run \"git commit\")"));
+				_("  (fix conflicts and run \"git cherry-pick --continue\")"));
 		else
 			status_printf_ln(s, color,
-				_("  (all conflicts fixed: run \"git commit\")"));
+				_("  (all conflicts fixed: run \"git cherry-pick --continue\")"));
+		status_printf_ln(s, color,
+			_("  (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"));
 	}
 	wt_status_print_trailer(s);
 }
-- 
1.8.3.1.3.gf2b4626.dirty

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

* Re: [PATCH] wt-status: give better advice when cherry-pick is in progress
  2013-06-17  4:28 [PATCH] wt-status: give better advice when cherry-pick is in progress Ralf Thielow
@ 2013-06-17 19:18 ` Junio C Hamano
  2013-06-17 19:29   ` Ralf Thielow
  0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2013-06-17 19:18 UTC (permalink / raw)
  To: Ralf Thielow; +Cc: git, Lucien.Kong

Ralf Thielow <ralf.thielow@gmail.com> writes:

> When cherry-pick is in progress, 'git status' gives the advice to
> run "git commit" to finish the cherry-pick. However, this won't continue
> the sequencer.
> "git status" should give the advice of running "git cherry-pick --continue"
> or "git cherry-pick --abort".

Is the above _always_ the case, or does the updated advice message
only apply when you are cherry-picking a range of commits with "git
cherry-pick A..B"?  In other words, when "git cherry-pick $it" (a
single commit) stops, waiting for your help to resolve it, would
"git cherry-pick --continue" conclude it?

If that works then this definitely is a good change (the user only
needs to know "cherry-pick --continue").

> Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
> ---
>  t/t7512-status-help.sh | 6 ++++--
>  wt-status.c            | 6 ++++--
>  2 files changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/t/t7512-status-help.sh b/t/t7512-status-help.sh
> index bf08d4e..4f09bec 100755
> --- a/t/t7512-status-help.sh
> +++ b/t/t7512-status-help.sh
> @@ -632,7 +632,8 @@ test_expect_success 'status when cherry-picking before resolving conflicts' '
>  	cat >expected <<-\EOF &&
>  	# On branch cherry_branch
>  	# You are currently cherry-picking.
> -	#   (fix conflicts and run "git commit")
> +	#   (fix conflicts and run "git cherry-pick --continue")
> +	#   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>  	#
>  	# Unmerged paths:
>  	#   (use "git add <file>..." to mark resolution)
> @@ -655,7 +656,8 @@ test_expect_success 'status when cherry-picking after resolving conflicts' '
>  	cat >expected <<-\EOF &&
>  	# On branch cherry_branch
>  	# You are currently cherry-picking.
> -	#   (all conflicts fixed: run "git commit")
> +	#   (all conflicts fixed: run "git cherry-pick --continue")
> +	#   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>  	#
>  	# Changes to be committed:
>  	#
> diff --git a/wt-status.c b/wt-status.c
> index bf84a86..438a40d 100644
> --- a/wt-status.c
> +++ b/wt-status.c
> @@ -955,10 +955,12 @@ static void show_cherry_pick_in_progress(struct wt_status *s,
>  	if (advice_status_hints) {
>  		if (has_unmerged(s))
>  			status_printf_ln(s, color,
> -				_("  (fix conflicts and run \"git commit\")"));
> +				_("  (fix conflicts and run \"git cherry-pick --continue\")"));
>  		else
>  			status_printf_ln(s, color,
> -				_("  (all conflicts fixed: run \"git commit\")"));
> +				_("  (all conflicts fixed: run \"git cherry-pick --continue\")"));
> +		status_printf_ln(s, color,
> +			_("  (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"));
>  	}
>  	wt_status_print_trailer(s);
>  }

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

* Re: [PATCH] wt-status: give better advice when cherry-pick is in progress
  2013-06-17 19:18 ` Junio C Hamano
@ 2013-06-17 19:29   ` Ralf Thielow
  2013-06-17 20:15     ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Ralf Thielow @ 2013-06-17 19:29 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Lucien.Kong

2013/6/17 Junio C Hamano <gitster@pobox.com>:
> Ralf Thielow <ralf.thielow@gmail.com> writes:
>
>> When cherry-pick is in progress, 'git status' gives the advice to
>> run "git commit" to finish the cherry-pick. However, this won't continue
>> the sequencer.
>> "git status" should give the advice of running "git cherry-pick --continue"
>> or "git cherry-pick --abort".
>
> Is the above _always_ the case, or does the updated advice message
> only apply when you are cherry-picking a range of commits with "git
> cherry-pick A..B"?  In other words, when "git cherry-pick $it" (a
> single commit) stops, waiting for your help to resolve it, would
> "git cherry-pick --continue" conclude it?
>

Yes, both "--continue" and "--abort" works with a single commit.

> If that works then this definitely is a good change (the user only
> needs to know "cherry-pick --continue").
>
>> Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
>> ---
>>  t/t7512-status-help.sh | 6 ++++--
>>  wt-status.c            | 6 ++++--
>>  2 files changed, 8 insertions(+), 4 deletions(-)
>>
>> diff --git a/t/t7512-status-help.sh b/t/t7512-status-help.sh
>> index bf08d4e..4f09bec 100755
>> --- a/t/t7512-status-help.sh
>> +++ b/t/t7512-status-help.sh
>> @@ -632,7 +632,8 @@ test_expect_success 'status when cherry-picking before resolving conflicts' '
>>       cat >expected <<-\EOF &&
>>       # On branch cherry_branch
>>       # You are currently cherry-picking.
>> -     #   (fix conflicts and run "git commit")
>> +     #   (fix conflicts and run "git cherry-pick --continue")
>> +     #   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>>       #
>>       # Unmerged paths:
>>       #   (use "git add <file>..." to mark resolution)
>> @@ -655,7 +656,8 @@ test_expect_success 'status when cherry-picking after resolving conflicts' '
>>       cat >expected <<-\EOF &&
>>       # On branch cherry_branch
>>       # You are currently cherry-picking.
>> -     #   (all conflicts fixed: run "git commit")
>> +     #   (all conflicts fixed: run "git cherry-pick --continue")
>> +     #   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>>       #
>>       # Changes to be committed:
>>       #
>> diff --git a/wt-status.c b/wt-status.c
>> index bf84a86..438a40d 100644
>> --- a/wt-status.c
>> +++ b/wt-status.c
>> @@ -955,10 +955,12 @@ static void show_cherry_pick_in_progress(struct wt_status *s,
>>       if (advice_status_hints) {
>>               if (has_unmerged(s))
>>                       status_printf_ln(s, color,
>> -                             _("  (fix conflicts and run \"git commit\")"));
>> +                             _("  (fix conflicts and run \"git cherry-pick --continue\")"));
>>               else
>>                       status_printf_ln(s, color,
>> -                             _("  (all conflicts fixed: run \"git commit\")"));
>> +                             _("  (all conflicts fixed: run \"git cherry-pick --continue\")"));
>> +             status_printf_ln(s, color,
>> +                     _("  (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"));
>>       }
>>       wt_status_print_trailer(s);
>>  }

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

* Re: [PATCH] wt-status: give better advice when cherry-pick is in progress
  2013-06-17 19:29   ` Ralf Thielow
@ 2013-06-17 20:15     ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2013-06-17 20:15 UTC (permalink / raw)
  To: Ralf Thielow; +Cc: git, Lucien.Kong

Ralf Thielow <ralf.thielow@gmail.com> writes:

> 2013/6/17 Junio C Hamano <gitster@pobox.com>:
>> Ralf Thielow <ralf.thielow@gmail.com> writes:
>>
>>> When cherry-pick is in progress, 'git status' gives the advice to
>>> run "git commit" to finish the cherry-pick. However, this won't continue
>>> the sequencer.
>>> "git status" should give the advice of running "git cherry-pick --continue"
>>> or "git cherry-pick --abort".
>>
>> Is the above _always_ the case, or does the updated advice message
>> only apply when you are cherry-picking a range of commits with "git
>> cherry-pick A..B"?  In other words, when "git cherry-pick $it" (a
>> single commit) stops, waiting for your help to resolve it, would
>> "git cherry-pick --continue" conclude it?
>>
>
> Yes, both "--continue" and "--abort" works with a single commit.

Perhaps that is a good thing to explain, in addition to "won't
continue the sequencer", as single-pick case does not have much to
do with it ;-)

Thanks, will queue.

>> If that works then this definitely is a good change (the user only
>> needs to know "cherry-pick --continue").
>>
>>> Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
>>> ---
>>>  t/t7512-status-help.sh | 6 ++++--
>>>  wt-status.c            | 6 ++++--
>>>  2 files changed, 8 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/t/t7512-status-help.sh b/t/t7512-status-help.sh
>>> index bf08d4e..4f09bec 100755
>>> --- a/t/t7512-status-help.sh
>>> +++ b/t/t7512-status-help.sh
>>> @@ -632,7 +632,8 @@ test_expect_success 'status when cherry-picking before resolving conflicts' '
>>>       cat >expected <<-\EOF &&
>>>       # On branch cherry_branch
>>>       # You are currently cherry-picking.
>>> -     #   (fix conflicts and run "git commit")
>>> +     #   (fix conflicts and run "git cherry-pick --continue")
>>> +     #   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>>>       #
>>>       # Unmerged paths:
>>>       #   (use "git add <file>..." to mark resolution)
>>> @@ -655,7 +656,8 @@ test_expect_success 'status when cherry-picking after resolving conflicts' '
>>>       cat >expected <<-\EOF &&
>>>       # On branch cherry_branch
>>>       # You are currently cherry-picking.
>>> -     #   (all conflicts fixed: run "git commit")
>>> +     #   (all conflicts fixed: run "git cherry-pick --continue")
>>> +     #   (use "git cherry-pick --abort" to cancel the cherry-pick operation)
>>>       #
>>>       # Changes to be committed:
>>>       #
>>> diff --git a/wt-status.c b/wt-status.c
>>> index bf84a86..438a40d 100644
>>> --- a/wt-status.c
>>> +++ b/wt-status.c
>>> @@ -955,10 +955,12 @@ static void show_cherry_pick_in_progress(struct wt_status *s,
>>>       if (advice_status_hints) {
>>>               if (has_unmerged(s))
>>>                       status_printf_ln(s, color,
>>> -                             _("  (fix conflicts and run \"git commit\")"));
>>> +                             _("  (fix conflicts and run \"git cherry-pick --continue\")"));
>>>               else
>>>                       status_printf_ln(s, color,
>>> -                             _("  (all conflicts fixed: run \"git commit\")"));
>>> +                             _("  (all conflicts fixed: run \"git cherry-pick --continue\")"));
>>> +             status_printf_ln(s, color,
>>> +                     _("  (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"));
>>>       }
>>>       wt_status_print_trailer(s);
>>>  }

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

end of thread, other threads:[~2013-06-17 20:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-17  4:28 [PATCH] wt-status: give better advice when cherry-pick is in progress Ralf Thielow
2013-06-17 19:18 ` Junio C Hamano
2013-06-17 19:29   ` Ralf Thielow
2013-06-17 20:15     ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).