Skip to content

Commit 90f7b16

Browse files
committed
Git 2.8
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 56331f8 commit 90f7b16

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

Documentation/RelNotes/2.8.0.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ UI, Workflows & Features
3434
have a place to store the updated notes tree, iow, a ref).
3535

3636
* "git grep" by default does not fall back to its "--no-index"
37-
behaviour outside a directory under Git's control (otherwise the
37+
behavior outside a directory under Git's control (otherwise the
3838
user may by mistake end up running a huge recursive search); with a
3939
new configuration (set in $HOME/.gitconfig--by definition this
4040
cannot be set in the config file per project), this safety can be
@@ -55,7 +55,7 @@ UI, Workflows & Features
5555

5656
* Many commands that read files that are expected to contain text
5757
that is generated (or can be edited) by the end user to control
58-
their behaviour (e.g. "git grep -f <filename>") have been updated
58+
their behavior (e.g. "git grep -f <filename>") have been updated
5959
to be more tolerant to lines that are terminated with CRLF (they
6060
used to treat such a line to contain payload that ends with CR,
6161
which is usually not what the users expect).
@@ -187,7 +187,7 @@ Performance, Internal Implementation, Development Support etc.
187187
with expectations that are not satisfiable on Git for Windows.
188188

189189
* Some calls to strcpy(3) triggers a false warning from static
190-
analysers that are less intelligent than humans, and reducing the
190+
analyzers that are less intelligent than humans, and reducing the
191191
number of these false hits helps us notice real issues. A few
192192
calls to strcpy(3) in a couple of protrams that are already safe
193193
has been rewritten to avoid false warnings.
@@ -281,7 +281,7 @@ notes for details).
281281
* "git send-email" was confused by escaped quotes stored in the alias
282282
files saved by "mutt", which has been corrected.
283283

284-
* A few unportable C construct have been spotted by clang compiler
284+
* A few non-portable C construct have been spotted by clang compiler
285285
and have been fixed.
286286

287287
* The documentation has been updated to hint the connection between
@@ -349,10 +349,10 @@ notes for details).
349349
* "git worktree" had a broken code that attempted to auto-fix
350350
possible inconsistency that results from end-users moving a
351351
worktree to different places without telling Git (the original
352-
repository needs to maintain backpointers to its worktrees, but
353-
"mv" run by end-users who are not familiar with that fact will
354-
obviously not adjust them), which actually made things worse
355-
when triggered.
352+
repository needs to maintain back-pointers to its worktrees,
353+
but "mv" run by end-users who are not familiar with that fact
354+
will obviously not adjust them), which actually made things
355+
worse when triggered.
356356

357357
* The low-level merge machinery has been taught to use CRLF line
358358
termination when inserting conflict markers to merged contents that

Documentation/git.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ unreleased) version of Git, that is available from the 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46+
* link:v2.8.0/git.html[documentation for release 2.8]
47+
48+
* release notes for
49+
link:RelNotes/2.8.0.txt[2.8].
50+
4651
* link:v2.7.3/git.html[documentation for release 2.7.3]
4752

4853
* release notes for

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.8.0-rc4
4+
DEF_VER=v2.8.0
55

66
LF='
77
'

0 commit comments

Comments
 (0)