Skip to content

Commit 1538695

Browse files
committed
Merge branch 'master' into next
* master: Git 1.7.9-rc0 Git 1.7.8.3 Documentation: rerere.enabled is the primary way to configure rerere
2 parents bcf3818 + eac2d83 commit 1538695

File tree

5 files changed

+32
-10
lines changed

5 files changed

+32
-10
lines changed

Documentation/RelNotes/1.7.8.3.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Git v1.7.8.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.8.2
5+
--------------------
6+
7+
* Attempt to fetch from an empty file pretending it to be a bundle did
8+
not error out correctly.
9+
10+
* gitweb did not correctly fall back to configured $fallback_encoding
11+
that is not 'latin1'.
12+
13+
* "git clone --depth $n" did not catch a non-number given as $n as an
14+
error.
15+
16+
Also contains minor fixes and documentation updates.

Documentation/RelNotes/1.7.9.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ Updates since v1.7.8
4848
* "git commit" detects and rejects an attempt to stuff NUL byte in
4949
the commit log message.
5050

51+
* "git commit" learned "-S" to GPG-sign the commit; this can be shown
52+
with the "--show-signature" option to "git log".
53+
5154
* fsck and prune are relatively lengthy operations that still go
5255
silent while making the end-user wait. They learned to give progress
5356
output like other slow operations.
@@ -64,6 +67,10 @@ Updates since v1.7.8
6467
signed tag is recorded in the resulting merge commit for later
6568
auditing.
6669

70+
* "git log" learned "--show-signature" option to show the signed tag
71+
that was merged that is embedded in the merge commit. It also can
72+
show the signature made on the commit with "git commit -S".
73+
6774
* "git branch --edit-description" can be used to add descriptive text
6875
to explain what a topic branch is about.
6976

@@ -99,10 +106,6 @@ Unless otherwise noted, all the fixes since v1.7.8 in the maintenance
99106
releases are contained in this release (see release notes to them for
100107
details).
101108

102-
* gitweb did not correctly fall back to configured $fallback_encoding
103-
that is not 'latin1'.
104-
(merge b13e3ea jn/maint-gitweb-utf8-fix later to maint).
105-
106109
--
107110
exec >/var/tmp/1
108111
O=v1.7.8.2-301-g48de656

Documentation/config.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1783,10 +1783,10 @@ rerere.autoupdate::
17831783

17841784
rerere.enabled::
17851785
Activate recording of resolved conflicts, so that identical
1786-
conflict hunks can be resolved automatically, should they
1787-
be encountered again. linkgit:git-rerere[1] command is by
1788-
default enabled if you create `rr-cache` directory under
1789-
`$GIT_DIR`, but can be disabled by setting this option to false.
1786+
conflict hunks can be resolved automatically, should they be
1787+
encountered again. By default, linkgit:git-rerere[1] is
1788+
enabled if there is an `rr-cache` directory under the
1789+
`$GIT_DIR`.
17901790

17911791
sendemail.identity::
17921792
A configuration identity. When given, causes values in the

Documentation/git.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@ unreleased) version of git, that is available from 'master'
4444
branch of the `git.git` repository.
4545
Documentation for older releases are available here:
4646

47-
* link:v1.7.8/git.html[documentation for release 1.7.8]
47+
* link:v1.7.8.3/git.html[documentation for release 1.7.8.3]
4848

4949
* release notes for
50+
link:RelNotes/1.7.8.3.txt[1.7.8.3],
51+
link:RelNotes/1.7.8.2.txt[1.7.8.2],
52+
link:RelNotes/1.7.8.1.txt[1.7.8.1],
5053
link:RelNotes/1.7.8.txt[1.7.8].
5154

5255
* link:v1.7.7.5/git.html[documentation for release 1.7.7.5]

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=v1.7.8.GIT
4+
DEF_VER=v1.7.9-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)