Skip to content

Commit b2bab5b

Browse files
committed
Sync with 1.7.8.6
2 parents 6eab5f2 + d9f5ef7 commit b2bab5b

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
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/RelNotes/1.7.8.6.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Git v1.7.8.6 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.8.5
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+
* Documentation for 'git rev-list' had minor formatting errors.
12+
13+
* 'git imap-send' carried an unused dead code.
14+
15+
* The way 'git fetch' implemented its connectivity check over
16+
received objects was overly pessimistic, and wasted a lot of
17+
cycles.
18+
19+
* Various minor backports of fixes from the 'master' and the 'maint'
20+
branch.
21+
22+
Also contains minor fixes and documentation updates.

Documentation/git.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,21 @@ Documentation for older releases are available here:
5555
link:RelNotes/1.7.9.1.txt[1.7.9.1],
5656
link:RelNotes/1.7.9.txt[1.7.9].
5757

58-
* link:v1.7.8.5/git.html[documentation for release 1.7.8.5]
58+
* link:v1.7.8.6/git.html[documentation for release 1.7.8.6]
5959

6060
* release notes for
61+
link:RelNotes/1.7.8.6.txt[1.7.8.6],
6162
link:RelNotes/1.7.8.5.txt[1.7.8.5],
6263
link:RelNotes/1.7.8.4.txt[1.7.8.4],
6364
link:RelNotes/1.7.8.3.txt[1.7.8.3],
6465
link:RelNotes/1.7.8.2.txt[1.7.8.2],
6566
link:RelNotes/1.7.8.1.txt[1.7.8.1],
6667
link:RelNotes/1.7.8.txt[1.7.8].
6768

68-
* link:v1.7.7.6/git.html[documentation for release 1.7.7.6]
69+
* link:v1.7.7.7/git.html[documentation for release 1.7.7.7]
6970

7071
* release notes for
72+
link:RelNotes/1.7.7.7.txt[1.7.7.7],
7173
link:RelNotes/1.7.7.6.txt[1.7.7.6],
7274
link:RelNotes/1.7.7.5.txt[1.7.7.5],
7375
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)