Skip to content

Commit 210a75c

Browse files
committed
Merge bundle error message fix in
Signed-off-by: Junio C Hamano <[email protected]>
2 parents f9d995d + 868d662 commit 210a75c

File tree

6 files changed

+105
-4
lines changed

6 files changed

+105
-4
lines changed

Documentation/RelNotes/1.7.10.1.txt

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
Git v1.7.10.1 Release Notes
2+
===========================
3+
4+
Fixes since v1.7.10
5+
-------------------
6+
7+
* "git add -p" is not designed to deal with unmerged paths but did
8+
not exclude them and tried to apply funny patches only to fail.
9+
10+
* When PATH contains an unreadable directory, alias expansion code
11+
did not kick in, and failed with an error that said "git-subcmd"
12+
was not found.
13+
14+
* "git clean -d -f" (not "-d -f -f") is supposed to protect nested
15+
working trees of independent git repositories that exist in the
16+
current project working tree from getting removed, but the
17+
protection applied only to such working trees that are at the
18+
top-level of the current project by mistake.
19+
20+
* "git commit --author=$name" did not tell the name that was being
21+
recorded in the resulting commit to hooks, even though it does do
22+
so when the end user overrode the authorship via the
23+
"GIT_AUTHOR_NAME" environment variable.
24+
25+
* When "git commit --template F" errors out because the user did not
26+
touch the message, it claimed that it aborts due to "empty
27+
message", which was utterly wrong.
28+
29+
* The regexp configured with diff.wordregex was incorrectly reused
30+
across files.
31+
32+
* An age-old corner case bug in combine diff (only triggered with -U0
33+
and the hunk at the beginning of the file needs to be shown) has
34+
been fixed.
35+
36+
* Rename detection logic used to match two empty files as renames
37+
during merge-recursive, leading to unnatural mismerges.
38+
39+
* Running "notes merge --commit" failed to perform correctly when run
40+
from any directory inside $GIT_DIR/. When "notes merge" stops with
41+
conflicts, $GIT_DIR/NOTES_MERGE_WORKTREE is the place a user edits
42+
to resolve it.
43+
44+
* The 'push to upstream' implementation was broken in some corner
45+
cases. "git push $there" without refspec, when the current branch
46+
is set to push to a remote different from $there, used to push to
47+
$there using the upstream information to a remote unreleated to
48+
$there.
49+
50+
Also contains minor fixes and documentation updates.

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)