Skip to content

Commit 8c7a786

Browse files
committed
Git 1.8.0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8ead1bf commit 8c7a786

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

Documentation/RelNotes/1.8.0.txt

+13-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ Git v1.8.0 Release Notes
44
Backward compatibility notes
55
----------------------------
66

7-
In the next major release, we will change the behavior of the "git
8-
push" command. When "git push [$there]" does not say what to push, we
9-
have used the traditional "matching" semantics so far (all your branches were
10-
sent to the remote as long as there already are branches of the same
11-
name over there). We will now use the "simple" semantics, that pushes the
12-
current branch to the branch with the same name only when the current
7+
In the next major release (not *this* one), we will change the
8+
behavior of the "git push" command.
9+
10+
When "git push [$there]" does not say what to push, we have used the
11+
traditional "matching" semantics so far (all your branches were sent
12+
to the remote as long as there already are branches of the same name
13+
over there). We will use the "simple" semantics that pushes the
14+
current branch to the branch with the same name, only when the current
1315
branch is set to integrate with that remote branch. There is a user
1416
preference configuration variable "push.default" to change this, and
1517
"git push" will warn about the upcoming change until you set this
16-
variable.
18+
variable in this release.
1719

1820
"git branch --set-upstream" is deprecated and may be removed in a
1921
relatively distant future. "git branch [-u|--set-upstream-to]" has
@@ -35,7 +37,7 @@ UI, Workflows & Features
3537

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

4042
* It was tempting to say "git branch --set-upstream origin/master",
4143
but that tells Git to arrange the local branch "origin/master" to
@@ -62,6 +64,8 @@ UI, Workflows & Features
6264
* "git grep" learned to use a non-standard pattern type by default if
6365
a configuration variable tells it to.
6466

67+
* Accumulated updates to "git gui" has been merged.
68+
6569
* "git log -g" learned the "--grep-reflog=<pattern>" option to limit
6670
its output to commits with a reflog message that matches the given
6771
pattern.
@@ -85,7 +89,7 @@ Foreign Interface
8589
encountering a conflict during "p4 submit".
8690

8791

88-
Performance, Internal Implementation, etc. (please report possible regressions)
92+
Performance, Internal Implementation, etc.
8993

9094
* Git ships with a fall-back regexp implementation for platforms with
9195
buggy regexp library, but it was easy for people to keep using their

Documentation/git.txt

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

46+
* link:v1.8.0/git.html[documentation for release 1.8.0]
47+
48+
* release notes for
49+
link:RelNotes/1.8.0.txt[1.8.0],
50+
4651
* link:v1.7.12.4/git.html[documentation for release 1.7.12.4]
4752

4853
* release notes for

GIT-VERSION-GEN

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.8.0-rc3
4+
DEF_VER=v1.8.0
55

66
LF='
77
'

0 commit comments

Comments
 (0)