Skip to content

Commit e3d4493

Browse files
committed
Sync with maint
2 parents b72c616 + f893b74 commit e3d4493

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

Documentation/RelNotes/1.8.3.4.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Git v1.8.3.4 Release Notes
2+
==========================
3+
4+
This update is mostly to propagate documentation fixes and test
5+
updates from the master front back to the maintenance track.
6+
7+
Fixes since v1.8.3.3
8+
--------------------
9+
10+
* The bisect log listed incorrect commits when bisection ends with
11+
only skipped ones.
12+
13+
* The test coverage framework was left broken for some time.
14+
15+
* The test suite for HTTP transport did not run with Apache 2.4.

Documentation/git-reset.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SYNOPSIS
99
--------
1010
[verse]
1111
'git reset' [-q] [<tree-ish>] [--] <paths>...
12-
'git reset' (--patch | -p) [<tree-sh>] [--] [<paths>...]
12+
'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...]
1313
'git reset' [--soft | --mixed | --hard | --merge | --keep] [-q] [<commit>]
1414

1515
DESCRIPTION

builtin/apply.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ static char *find_name(const char *line, char *def, int p_value, int terminate)
722722

723723
static char *find_name_traditional(const char *line, char *def, int p_value)
724724
{
725-
size_t len = strlen(line);
725+
size_t len;
726726
size_t date_len;
727727

728728
if (*line == '"') {

http-push.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ static void add_fetch_request(struct object *obj)
663663

664664
static int add_send_request(struct object *obj, struct remote_lock *lock)
665665
{
666-
struct transfer_request *request = request_queue_head;
666+
struct transfer_request *request;
667667
struct packed_git *target;
668668

669669
/* Keep locks active */

0 commit comments

Comments
 (0)