Skip to content

Commit 50bf38a

Browse files
committed
Sync with 1.7.9.7
2 parents fdec2eb + d0f1ea6 commit 50bf38a

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
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/RelNotes/1.7.9.7.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Git v1.7.9.7 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.9.6
5+
--------------------
6+
7+
* An error message from 'git bundle' had an unmatched single quote pair in it.
8+
9+
* The way 'git fetch' implemented its connectivity check over
10+
received objects was overly pessimistic, and wasted a lot of
11+
cycles.
12+
13+
Also contains minor fixes and documentation updates.

Documentation/git.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ Documentation for older releases are available here:
4949
* release notes for
5050
link:RelNotes/1.7.10.txt[1.7.10].
5151

52-
* link:v1.7.9.6/git.html[documentation for release 1.7.9.6]
52+
* link:v1.7.9.7/git.html[documentation for release 1.7.9.7]
5353

5454
* release notes for
55+
link:RelNotes/1.7.9.7.txt[1.7.9.7],
5556
link:RelNotes/1.7.9.6.txt[1.7.9.6],
5657
link:RelNotes/1.7.9.5.txt[1.7.9.5],
5758
link:RelNotes/1.7.9.4.txt[1.7.9.4],
@@ -60,19 +61,21 @@ Documentation for older releases are available here:
6061
link:RelNotes/1.7.9.1.txt[1.7.9.1],
6162
link:RelNotes/1.7.9.txt[1.7.9].
6263

63-
* link:v1.7.8.5/git.html[documentation for release 1.7.8.5]
64+
* link:v1.7.8.6/git.html[documentation for release 1.7.8.6]
6465

6566
* release notes for
67+
link:RelNotes/1.7.8.6.txt[1.7.8.6],
6668
link:RelNotes/1.7.8.5.txt[1.7.8.5],
6769
link:RelNotes/1.7.8.4.txt[1.7.8.4],
6870
link:RelNotes/1.7.8.3.txt[1.7.8.3],
6971
link:RelNotes/1.7.8.2.txt[1.7.8.2],
7072
link:RelNotes/1.7.8.1.txt[1.7.8.1],
7173
link:RelNotes/1.7.8.txt[1.7.8].
7274

73-
* link:v1.7.7.6/git.html[documentation for release 1.7.7.6]
75+
* link:v1.7.7.7/git.html[documentation for release 1.7.7.7]
7476

7577
* release notes for
78+
link:RelNotes/1.7.7.7.txt[1.7.7.7],
7679
link:RelNotes/1.7.7.6.txt[1.7.7.6],
7780
link:RelNotes/1.7.7.5.txt[1.7.7.5],
7881
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)