Skip to content

Commit d117dd2

Browse files
Michael J Grubergitster
authored andcommitted
RelNotes/1.8.0: various typo and style fixes
Signed-off-by: Michael J Gruber <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b0ec16b commit d117dd2

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Documentation/RelNotes/1.8.0.txt

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Git v1.8.0 Release Notes
44
Backward compatibility notes
55
----------------------------
66

7-
In the next major release, we will change the behaviour of the "git
7+
In the next major release, we will change the behavior of the "git
88
push" command. When "git push [$there]" does not say what to push, we
9-
have used the traditional "matching" semantics (all your branches were
9+
have used the traditional "matching" semantics so far (all your branches were
1010
sent to the remote as long as there already are branches of the same
11-
name over there). We will use the "simple" semantics, that pushes the
11+
name over there). We will now use the "simple" semantics, that pushes the
1212
current branch to the branch with the same name only when the current
1313
branch is set to integrate with that remote branch. There is a user
1414
preference configuration variable "push.default" to change this, and
@@ -33,9 +33,9 @@ UI, Workflows & Features
3333
* A credential helper to allow access to the Gnome keyring has been
3434
added.
3535

36-
* When "git am" sanitizes the Subject: line, we strip the prefix from
36+
* When "git am" sanitizes the "Subject:" line, we strip the prefix from
3737
"Re: subject" and also from a less common "re: subject", but left
38-
even less common "RE: subject" intact.
38+
the even less common "RE: subject" intact. We strip that now, too.
3939

4040
* It was tempting to say "git branch --set-upstream origin/master",
4141
but that tells Git to arrange the local branch "origin/master" to
@@ -57,51 +57,51 @@ UI, Workflows & Features
5757
repository path, etc.
5858

5959
* "git difftool --dir-diff" learned to use symbolic links to prepare
60-
temporary copy of the working tree when available.
60+
a temporary copy of the working tree when available.
6161

6262
* "git grep" learned to use a non-standard pattern type by default if
6363
a configuration variable tells it to.
6464

65-
* "git merge-base" learned "--is-ancestor A B" option to tell if A is
65+
* "git merge-base" learned the "--is-ancestor A B" option to tell if A is
6666
an ancestor of B. The result is indicated by its exit status code.
6767

68-
* "git mergetool" allows users to override the actual command used
68+
* "git mergetool" now allows users to override the actual command used
6969
with the mergetool.$name.cmd configuration variable even for built-in
7070
mergetool backends.
7171

7272
* The "-Xours" backend option to "git merge -s recursive" now takes
7373
effect even on binary files.
7474

7575
* "git rebase -i" learned the "--edit-todo" option to open an editor
76-
to edit the insn sheet.
76+
to edit the instruction sheet.
7777

7878

7979
Foreign Interface
8080

8181
* "git svn" has been updated to work with SVN 1.7.
8282

83-
* "git p4" learned "--conflicts" option to specify what to do when
83+
* "git p4" learned the "--conflicts" option to specify what to do when
8484
encountering a conflict during "p4 submit".
8585

8686

8787
Performance, Internal Implementation, etc. (please report possible regressions)
8888

8989
* Git ships with a fall-back regexp implementation for platforms with
9090
buggy regexp library, but it was easy for people to keep using their
91-
platform regexp. A new test has been added to check this.
91+
platform regexp by mistake. A new test has been added to check this.
9292

9393
* The "check-docs" build target has been updated and greatly
9494
simplified.
9595

96-
* The test suite is run under MALLOC_CHECK_ when running with glibc
96+
* The test suite is run under MALLOC_CHECK_ when running with a glibc
9797
that supports the feature.
9898

9999
* The documentation in the TeXinfo format was using indented output
100100
for materials meant to be examples that are better typeset in
101101
monospace.
102102

103103
* Compatibility wrapper around some mkdir(2) implementations that
104-
reject parameter with trailing slash has been introduced.
104+
reject parameters with trailing slash has been introduced.
105105

106106
* Compatibility wrapper for systems that lack usable setitimer() has
107107
been added.
@@ -113,7 +113,7 @@ Performance, Internal Implementation, etc. (please report possible regressions)
113113
when the user says "git checkout -b -t foo bar" (e.g. "-t" is not a
114114
good name for a branch).
115115

116-
* Many internal uses of "git merge-base" equivalent were only to see
116+
* Many internal uses of a "git merge-base" equivalent were only to see
117117
if one commit fast-forwards to the other, which did not need the
118118
full set of merge bases to be computed. They have been updated to
119119
use less expensive checks.
@@ -164,7 +164,7 @@ to them for details).
164164

165165
* Output from "git branch -v" contains "(no branch)" that could be
166166
localized, but the code to align it along with the names of
167-
branches were counting in bytes, not in display columns.
167+
branches was counting in bytes, not in display columns.
168168

169169
* "git cherry-pick A C B" used to replay changes in A and then B and
170170
then C if these three commits had committer timestamps in that
@@ -189,11 +189,11 @@ to them for details).
189189
* Earlier we made the diffstat summary line that shows the number of
190190
lines added/deleted localizable, but it was found irritating having
191191
to see them in various languages on a list whose discussion language
192-
is English.
192+
is English, and this change has been reverted.
193193

194194
* "git fetch --all", when passed "--no-tags", did not honor the
195195
"--no-tags" option while fetching from individual remotes (the same
196-
issue existed with "--tags", but combination "--all --tags" makes
196+
issue existed with "--tags", but the combination "--all --tags" makes
197197
much less sense than "--all --no-tags").
198198

199199
* "git fetch" over http had an old workaround for an unlikely server
@@ -202,13 +202,13 @@ to them for details).
202202
(merge 6ac964a sp/maint-http-info-refs-no-retry later to maint).
203203

204204
* "git fetch" over http advertised that it supports "deflate", which
205-
is much less common, and did not advertise more common "gzip" on
205+
is much less common, and did not advertise the more common "gzip" on
206206
its Accept-Encoding header.
207207
(merge aa90b96 sp/maint-http-enable-gzip later to maint).
208208

209209
* After "gitk" showed the contents of a tag, neither "Reread
210-
references" nor "Reload" did not update what is shown as the
211-
contents of it, when the user overwrote the tag with "git tag -f".
210+
references" nor "Reload" updated what is shown as the
211+
contents of it when the user overwrote the tag with "git tag -f".
212212

213213
* "git log --all-match --grep=A --grep=B" ought to show commits that
214214
mention both A and B, but when these three options are used with
@@ -224,21 +224,21 @@ to them for details).
224224
(merge 74eb32d jk/receive-pack-unpack-error-to-pusher later to maint).
225225

226226
* When you misspell the command name you give to the "exec" action in
227-
the "git rebase -i" insn sheet, you are told that 'rebase' is not a
227+
the "git rebase -i" instruction sheet you were told that 'rebase' is not a
228228
git subcommand from "git rebase --continue".
229229

230230
* The subcommand in "git remote" to remove a defined remote was
231231
"rm" and the command did not take a fully-spelled "remove".
232232

233-
* The interactive prompt "git send-email" gives was error prone. It
233+
* The interactive prompt that "git send-email" gives was error prone. It
234234
asked "What e-mail address do you want to use?" with the address it
235235
guessed (correctly) the user would want to use in its prompt,
236236
tempting the user to say "y". But the response was taken as "No,
237237
please use 'y' as the e-mail address instead", which is most
238238
certainly not what the user meant.
239239

240-
* "git show --format='%ci'" did not give timestamp correctly for
241-
commits created without human readable name on "committer" line.
240+
* "git show --format='%ci'" did not give the timestamp correctly for
241+
commits created without human readable name on the "committer" line.
242242

243243
* "git show --quiet" ought to be a synonym for "git show -s", but
244244
wasn't.

0 commit comments

Comments
 (0)