Skip to content

Commit aba5f57

Browse files
committed
Sync with 1.7.7.7
2 parents b1bcfbe + 8258858 commit aba5f57

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Documentation/RelNotes/1.7.7.7.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Git v1.7.7.7 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.7.6
5+
--------------------
6+
7+
* An error message from 'git bundle' had an unmatched single quote pair in it.
8+
9+
* 'git diff --histogram' option was not described.
10+
11+
* 'git imap-send' carried an unused dead code.
12+
13+
Also contains minor fixes and documentation updates.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ Documentation for older releases are available here:
5353
link:RelNotes/1.7.8.1.txt[1.7.8.1],
5454
link:RelNotes/1.7.8.txt[1.7.8].
5555

56-
* link:v1.7.7.6/git.html[documentation for release 1.7.7.6]
56+
* link:v1.7.7.7/git.html[documentation for release 1.7.7.7]
5757

5858
* release notes for
59+
link:RelNotes/1.7.7.7.txt[1.7.7.7],
5960
link:RelNotes/1.7.7.6.txt[1.7.7.6],
6061
link:RelNotes/1.7.7.5.txt[1.7.7.5],
6162
link:RelNotes/1.7.7.4.txt[1.7.7.4],

bundle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ int create_bundle(struct bundle_header *header, const char *path,
289289
argc = setup_revisions(argc, argv, &revs, NULL);
290290

291291
if (argc > 1)
292-
return error("unrecognized argument: %s'", argv[1]);
292+
return error("unrecognized argument: %s", argv[1]);
293293

294294
object_array_remove_duplicates(&revs.pending);
295295

0 commit comments

Comments
 (0)