git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] rebase docs: drop stray word in merge command description
@ 2018-12-08 23:15 Kyle Meyer
  2018-12-09 19:41 ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Kyle Meyer @ 2018-12-08 23:15 UTC (permalink / raw)
  To: git; +Cc: Johannes.Schindelin, Kyle Meyer

Delete a misplaced word introduced by caafecfcf1 (rebase
--rebase-merges: adjust man page for octopus support, 2018-03-09).

Signed-off-by: Kyle Meyer <kyle@kyleam.com>
---
 Documentation/git-rebase.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt
index dff17b3178..2ee535fb23 100644
--- a/Documentation/git-rebase.txt
+++ b/Documentation/git-rebase.txt
@@ -979,7 +979,7 @@ when the merge operation did not even start), it is rescheduled immediately.
 
 At this time, the `merge` command will *always* use the `recursive`
 merge strategy for regular merges, and `octopus` for octopus merges,
-strategy, with no way to choose a different one. To work around
+with no way to choose a different one. To work around
 this, an `exec` command can be used to call `git merge` explicitly,
 using the fact that the labels are worktree-local refs (the ref
 `refs/rewritten/onto` would correspond to the label `onto`, for example).
-- 
2.19.2


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

* Re: [PATCH] rebase docs: drop stray word in merge command description
  2018-12-08 23:15 [PATCH] rebase docs: drop stray word in merge command description Kyle Meyer
@ 2018-12-09 19:41 ` Johannes Schindelin
  2018-12-10  3:31   ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2018-12-09 19:41 UTC (permalink / raw)
  To: Kyle Meyer; +Cc: git

Hi Kyle,

On Sat, 8 Dec 2018, Kyle Meyer wrote:

> Delete a misplaced word introduced by caafecfcf1 (rebase
> --rebase-merges: adjust man page for octopus support, 2018-03-09).
> 
> Signed-off-by: Kyle Meyer <kyle@kyleam.com>

ACK.

Too bad this did not make it into v2.20.0, but at least it can make it
into a future version.

Thanks,
Johannes

> ---
>  Documentation/git-rebase.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt
> index dff17b3178..2ee535fb23 100644
> --- a/Documentation/git-rebase.txt
> +++ b/Documentation/git-rebase.txt
> @@ -979,7 +979,7 @@ when the merge operation did not even start), it is rescheduled immediately.
>  
>  At this time, the `merge` command will *always* use the `recursive`
>  merge strategy for regular merges, and `octopus` for octopus merges,
> -strategy, with no way to choose a different one. To work around
> +with no way to choose a different one. To work around
>  this, an `exec` command can be used to call `git merge` explicitly,
>  using the fact that the labels are worktree-local refs (the ref
>  `refs/rewritten/onto` would correspond to the label `onto`, for example).
> -- 
> 2.19.2
> 
> 

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

* Re: [PATCH] rebase docs: drop stray word in merge command description
  2018-12-09 19:41 ` Johannes Schindelin
@ 2018-12-10  3:31   ` Junio C Hamano
  2018-12-10  8:27     ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2018-12-10  3:31 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Kyle Meyer, git

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> Hi Kyle,
>
> On Sat, 8 Dec 2018, Kyle Meyer wrote:
>
>> Delete a misplaced word introduced by caafecfcf1 (rebase
>> --rebase-merges: adjust man page for octopus support, 2018-03-09).
>> 
>> Signed-off-by: Kyle Meyer <kyle@kyleam.com>
>
> ACK.

Thanks.

> Too bad this did not make it into v2.20.0, but at least it can make it
> into a future version.

The right way to fix it is to prepare a topic that can be merged
down to the 2.19.x track, and proceed normally to percolate it down
via 'next', 'master' and 'maint' as any other fixes.  That is
already happening.

The original documentation bug is older than where the 2.20 track
forked; the bug is in 2.19.  Any such old bugs, users have survived
without it being fixed for a cycle already, and the fix is not that
urgent to interrupt the release engineering that is already underway
and redo it.

A regression that appears only in -rc and a known bug in a new
feature that appears only in -rc are different matters.  It is
prudent to always first access how serious they are and we must be
prepared to even delay the final as necessary.  But I do not think
this one is.

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

* Re: [PATCH] rebase docs: drop stray word in merge command description
  2018-12-10  3:31   ` Junio C Hamano
@ 2018-12-10  8:27     ` Johannes Schindelin
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2018-12-10  8:27 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Kyle Meyer, git

Hi Junio,

On Mon, 10 Dec 2018, Junio C Hamano wrote:

> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> 
> > Hi Kyle,
> >
> > On Sat, 8 Dec 2018, Kyle Meyer wrote:
> >
> >> Delete a misplaced word introduced by caafecfcf1 (rebase
> >> --rebase-merges: adjust man page for octopus support, 2018-03-09).
> >> 
> >> Signed-off-by: Kyle Meyer <kyle@kyleam.com>
> >
> > ACK.
> 
> Thanks.
> 
> > Too bad this did not make it into v2.20.0, but at least it can make it
> > into a future version.
> 
> The right way to fix it is to prepare a topic that can be merged
> down to the 2.19.x track, and proceed normally to percolate it down
> via 'next', 'master' and 'maint' as any other fixes.  That is
> already happening.
> 
> The original documentation bug is older than where the 2.20 track
> forked; the bug is in 2.19.  Any such old bugs, users have survived
> without it being fixed for a cycle already, and the fix is not that
> urgent to interrupt the release engineering that is already underway
> and redo it.
> 
> A regression that appears only in -rc and a known bug in a new
> feature that appears only in -rc are different matters.  It is
> prudent to always first access how serious they are and we must be
> prepared to even delay the final as necessary.  But I do not think
> this one is.

You are right, of course, this was not as critical a bug fix as others you
integrated last minute.

Thanks,
Dscho

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

end of thread, other threads:[~2018-12-10  8:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-08 23:15 [PATCH] rebase docs: drop stray word in merge command description Kyle Meyer
2018-12-09 19:41 ` Johannes Schindelin
2018-12-10  3:31   ` Junio C Hamano
2018-12-10  8:27     ` Johannes Schindelin

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