* [PATCH] RelNotes: minor typo fixes in 2.44.0 draft
@ 2024-02-17 0:28 Todd Zullinger
2024-02-17 2:20 ` Kousik Sanagavarapu
0 siblings, 1 reply; 4+ messages in thread
From: Todd Zullinger @ 2024-02-17 0:28 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Signed-off-by: Todd Zullinger <tmz@pobox.com>
---
Documentation/RelNotes/2.44.0.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/RelNotes/2.44.0.txt b/Documentation/RelNotes/2.44.0.txt
index 7dd8d75844..731c3f7592 100644
--- a/Documentation/RelNotes/2.44.0.txt
+++ b/Documentation/RelNotes/2.44.0.txt
@@ -3,7 +3,7 @@ Git v2.44 Release Notes
Backward Compatibility Notes
- * "git chekcout -B <branch>" used to allow switching to a branch that
+ * "git checkout -B <branch>" used to allow switching to a branch that
is in use on another worktree, but this was by mistake. The users
need to use "--ignore-other-worktrees" option.
@@ -54,7 +54,7 @@ UI, Workflows & Features
gitweb behaved as if the file did not exist at all, but now it
errors out. This is a change that may break backward compatibility.
- * When $HOME/.gitignore is missing but XDG config file available, we
+ * When $HOME/.gitconfig is missing but XDG config file available, we
should write into the latter, not former. "git gc" and "git
maintenance" wrote into a wrong "global config" file, which have
been corrected.
--
2.44.0.rc1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] RelNotes: minor typo fixes in 2.44.0 draft
2024-02-17 0:28 [PATCH] RelNotes: minor typo fixes in 2.44.0 draft Todd Zullinger
@ 2024-02-17 2:20 ` Kousik Sanagavarapu
2024-02-17 16:37 ` [PATCH v2] " Todd Zullinger
0 siblings, 1 reply; 4+ messages in thread
From: Kousik Sanagavarapu @ 2024-02-17 2:20 UTC (permalink / raw)
To: Todd Zullinger; +Cc: git, Junio C Hamano
Todd Zullinger <tmz@pobox.com> wrote:
> - * When $HOME/.gitignore is missing but XDG config file available, we
> + * When $HOME/.gitconfig is missing but XDG config file available, we
s/file available/file is available
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] RelNotes: minor typo fixes in 2.44.0 draft
2024-02-17 2:20 ` Kousik Sanagavarapu
@ 2024-02-17 16:37 ` Todd Zullinger
2024-02-17 18:12 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Todd Zullinger @ 2024-02-17 16:37 UTC (permalink / raw)
To: Kousik Sanagavarapu; +Cc: Junio C Hamano, git
Signed-off-by: Todd Zullinger <tmz@pobox.com>
---
Kousik Sanagavarapu wrote:
> Todd Zullinger <tmz@pobox.com> wrote:
>
>> - * When $HOME/.gitignore is missing but XDG config file available, we
>> + * When $HOME/.gitconfig is missing but XDG config file available, we
>
> s/file available/file is available
Good point, thanks. :)
Documentation/RelNotes/2.44.0.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/RelNotes/2.44.0.txt b/Documentation/RelNotes/2.44.0.txt
index 7dd8d75844..7cee544eee 100644
--- a/Documentation/RelNotes/2.44.0.txt
+++ b/Documentation/RelNotes/2.44.0.txt
@@ -3,7 +3,7 @@ Git v2.44 Release Notes
Backward Compatibility Notes
- * "git chekcout -B <branch>" used to allow switching to a branch that
+ * "git checkout -B <branch>" used to allow switching to a branch that
is in use on another worktree, but this was by mistake. The users
need to use "--ignore-other-worktrees" option.
@@ -54,7 +54,7 @@ UI, Workflows & Features
gitweb behaved as if the file did not exist at all, but now it
errors out. This is a change that may break backward compatibility.
- * When $HOME/.gitignore is missing but XDG config file available, we
+ * When $HOME/.gitconfig is missing but XDG config file is available, we
should write into the latter, not former. "git gc" and "git
maintenance" wrote into a wrong "global config" file, which have
been corrected.
--
2.44.0.rc1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] RelNotes: minor typo fixes in 2.44.0 draft
2024-02-17 16:37 ` [PATCH v2] " Todd Zullinger
@ 2024-02-17 18:12 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2024-02-17 18:12 UTC (permalink / raw)
To: Todd Zullinger; +Cc: Kousik Sanagavarapu, git
Todd Zullinger <tmz@pobox.com> writes:
> Signed-off-by: Todd Zullinger <tmz@pobox.com>
> ---
> Kousik Sanagavarapu wrote:
>> Todd Zullinger <tmz@pobox.com> wrote:
>>
>>> - * When $HOME/.gitignore is missing but XDG config file available, we
>>> + * When $HOME/.gitconfig is missing but XDG config file available, we
>>
>> s/file available/file is available
>
> Good point, thanks. :)
Thanks, both. Will apply.
>
> Documentation/RelNotes/2.44.0.txt | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/RelNotes/2.44.0.txt b/Documentation/RelNotes/2.44.0.txt
> index 7dd8d75844..7cee544eee 100644
> --- a/Documentation/RelNotes/2.44.0.txt
> +++ b/Documentation/RelNotes/2.44.0.txt
> @@ -3,7 +3,7 @@ Git v2.44 Release Notes
>
> Backward Compatibility Notes
>
> - * "git chekcout -B <branch>" used to allow switching to a branch that
> + * "git checkout -B <branch>" used to allow switching to a branch that
> is in use on another worktree, but this was by mistake. The users
> need to use "--ignore-other-worktrees" option.
>
> @@ -54,7 +54,7 @@ UI, Workflows & Features
> gitweb behaved as if the file did not exist at all, but now it
> errors out. This is a change that may break backward compatibility.
>
> - * When $HOME/.gitignore is missing but XDG config file available, we
> + * When $HOME/.gitconfig is missing but XDG config file is available, we
> should write into the latter, not former. "git gc" and "git
> maintenance" wrote into a wrong "global config" file, which have
> been corrected.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-17 18:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-17 0:28 [PATCH] RelNotes: minor typo fixes in 2.44.0 draft Todd Zullinger
2024-02-17 2:20 ` Kousik Sanagavarapu
2024-02-17 16:37 ` [PATCH v2] " Todd Zullinger
2024-02-17 18:12 ` 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).