Skip to content

Commit 2b60326

Browse files
committed
Merge branch 'maint'
2 parents 0fe8c13 + e124554 commit 2b60326

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Documentation/RelNotes-1.5.6.5.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
GIT v1.5.6.5 Release Notes
2+
==========================
3+
4+
Fixes since v1.5.6.4
5+
--------------------
6+
7+
* "git init --template=" with blank "template" parameter linked files
8+
under root directories to .git, which was a total nonsense. Instead, it
9+
means "I do not want to use anything from the template directory".
10+
11+
* "git show-branch" mishandled its 8th branch.
12+
13+
* Addition of "git update-index --ignore-submodules" that happened during
14+
1.5.6 cycle broke "git update-index --ignore-missing".
15+
16+
* "git send-email" did not parse charset from an existing Content-type:
17+
header properly.
18+
19+
Contains other various documentation fixes.

builtin-revert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ static void set_author_ident_env(const char *message)
180180
email++;
181181
timestamp = strchr(email, '>');
182182
if (!timestamp)
183-
die ("Could not extract author email from %s",
183+
die ("Could not extract author time from %s",
184184
sha1_to_hex(commit->object.sha1));
185185
*timestamp = '\0';
186186
for (timestamp++; *timestamp && isspace(*timestamp);

0 commit comments

Comments
 (0)