* [PATCH] RelNotes: minor typo fixes in 2.15.1 draft
@ 2017-11-25 17:33 Todd Zullinger
2017-11-25 18:02 ` Todd Zullinger
0 siblings, 1 reply; 4+ messages in thread
From: Todd Zullinger @ 2017-11-25 17:33 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Signed-off-by: Todd Zullinger <tmz@pobox.com>
---
Documentation/RelNotes/2.15.1.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/RelNotes/2.15.1.txt b/Documentation/RelNotes/2.15.1.txt
index 47f23b56fe..81dd64b4ad 100644
--- a/Documentation/RelNotes/2.15.1.txt
+++ b/Documentation/RelNotes/2.15.1.txt
@@ -13,7 +13,7 @@ Fixes since v2.15
latter, which has been fixed.
* The experimental "color moved lines differently in diff output"
- feature was buggy around "ignore whitespace changes" edges, whihch
+ feature was buggy around "ignore whitespace changes" edges, which
has been corrected.
* Instead of using custom line comparison and hashing functions to
@@ -24,7 +24,7 @@ Fixes since v2.15
HEAD points at, which have been fixed.
* "git commit", after making a commit, did not check for errors when
- asking on what branch it made the commit, which has been correted.
+ asking on what branch it made the commit, which has been corrected.
* "git status --ignored -u" did not stop at a working tree of a
separate project that is embedded in an ignored directory and
@@ -35,7 +35,7 @@ Fixes since v2.15
--recurse-submodules" has been fixed.
* A recent regression in "git rebase -i" that broke execution of git
- commands from subdirectories via "exec" insn has been fixed.
+ commands from subdirectories via "exec" instruction has been fixed.
* "git check-ref-format --branch @{-1}" bit a "BUG()" when run
outside a repository for obvious reasons; clarify the documentation
--
2.15.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] RelNotes: minor typo fixes in 2.15.1 draft
2017-11-25 17:33 [PATCH] RelNotes: minor typo fixes in 2.15.1 draft Todd Zullinger
@ 2017-11-25 18:02 ` Todd Zullinger
2017-11-26 3:49 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Todd Zullinger @ 2017-11-25 18:02 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Apologies for the duplicate. I used the `-n` option, mistakenly
thinking it was a synonym for `--dry-run` and didn't pay enough
attention to see that it sent. (The only indication is s/OK./Dry &/
which I missed.)
It was mildly surprising that the script didn't warn or complain about
an unknown option. After a quick look, that seems to be due to the
Getopt::Long pass_through option which sends unknown options to
format-patch.
That doesn't remove the user-error on my part, of course. ;)
--
Todd
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Cogito cogito ergo cogito sum --
I think that I think, therefore I think that I am.
-- Ambrose Bierce, "The Devil's Dictionary"
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] RelNotes: minor typo fixes in 2.15.1 draft
2017-11-25 18:02 ` Todd Zullinger
@ 2017-11-26 3:49 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2017-11-26 3:49 UTC (permalink / raw)
To: Todd Zullinger; +Cc: git
Todd Zullinger <tmz@pobox.com> writes:
> It was mildly surprising that the script didn't warn or complain about
> an unknown option. After a quick look, that seems to be due to the
> Getopt::Long pass_through option which sends unknown options to
> format-patch.
Heh, that is another reason why I recommend against letting
send-email run format-patch from within (another a lot bigger one is
that running them seprately gives you a chance to look and proofread
the output from format-patch one more time before actually sending
them out, which also allows you to update additional comments after
the three-dash lines).
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] RelNotes: minor typo fixes in 2.15.1 draft
@ 2017-11-25 17:32 Todd Zullinger
0 siblings, 0 replies; 4+ messages in thread
From: Todd Zullinger @ 2017-11-25 17:32 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Signed-off-by: Todd Zullinger <tmz@pobox.com>
---
Documentation/RelNotes/2.15.1.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/RelNotes/2.15.1.txt b/Documentation/RelNotes/2.15.1.txt
index 47f23b56fe..81dd64b4ad 100644
--- a/Documentation/RelNotes/2.15.1.txt
+++ b/Documentation/RelNotes/2.15.1.txt
@@ -13,7 +13,7 @@ Fixes since v2.15
latter, which has been fixed.
* The experimental "color moved lines differently in diff output"
- feature was buggy around "ignore whitespace changes" edges, whihch
+ feature was buggy around "ignore whitespace changes" edges, which
has been corrected.
* Instead of using custom line comparison and hashing functions to
@@ -24,7 +24,7 @@ Fixes since v2.15
HEAD points at, which have been fixed.
* "git commit", after making a commit, did not check for errors when
- asking on what branch it made the commit, which has been correted.
+ asking on what branch it made the commit, which has been corrected.
* "git status --ignored -u" did not stop at a working tree of a
separate project that is embedded in an ignored directory and
@@ -35,7 +35,7 @@ Fixes since v2.15
--recurse-submodules" has been fixed.
* A recent regression in "git rebase -i" that broke execution of git
- commands from subdirectories via "exec" insn has been fixed.
+ commands from subdirectories via "exec" instruction has been fixed.
* "git check-ref-format --branch @{-1}" bit a "BUG()" when run
outside a repository for obvious reasons; clarify the documentation
--
2.15.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-11-26 3:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-25 17:33 [PATCH] RelNotes: minor typo fixes in 2.15.1 draft Todd Zullinger
2017-11-25 18:02 ` Todd Zullinger
2017-11-26 3:49 ` Junio C Hamano
-- strict thread matches above, loose matches on Subject: below --
2017-11-25 17:32 Todd Zullinger
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).