From 04fe1184fd0611bf26785b365dd344b8f7d72861 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 25 Mar 2013 12:51:50 -0700 Subject: [PATCH 1/2] transport.c: help gcc 4.6.3 users by squelching compiler warning To a human reader, it is quite obvious that cmp is assigned before it is used, but gcc 4.6.3 that ships with Ubuntu 12.04 is among those that do not get this right. Signed-off-by: Junio C Hamano --- transport.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transport.c b/transport.c index 87b8f145ac..e6f9346c76 100644 --- a/transport.c +++ b/transport.c @@ -106,7 +106,8 @@ static void insert_packed_refs(const char *packed_refs, struct ref **list) return; for (;;) { - int cmp, len; + int cmp = 0; /* assigned before used */ + int len; if (!fgets(buffer, sizeof(buffer), f)) { fclose(f); From 1252f8b29faf3a1a45a995ae72d1d8c8ee67ad36 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 25 Mar 2013 13:51:13 -0700 Subject: [PATCH 2/2] Start preparing for 1.8.2.1 ... at the same time, preparation for 1.8.1.6 also has started ;-) Signed-off-by: Junio C Hamano --- Documentation/RelNotes/1.8.2.1.txt | 29 +++++++++++++++++++++++++++++ RelNotes | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 Documentation/RelNotes/1.8.2.1.txt diff --git a/Documentation/RelNotes/1.8.2.1.txt b/Documentation/RelNotes/1.8.2.1.txt new file mode 100644 index 0000000000..e77f8333ea --- /dev/null +++ b/Documentation/RelNotes/1.8.2.1.txt @@ -0,0 +1,29 @@ +Git v1.8.2.1 Release Notes +========================== + +Fixes since v1.8.2 +------------------ + + * The "--color=" argument to the commands in the diff family + was described poorly. + + * The arguments given to pre-rebase hook were not documented. + + * The v4 index format was not documented. + + * The "--match=" argument "git describe" takes uses glob + pattern but it wasn't obvious from the documentation. + + * Some sources failed to compile on systems that lack NI_MAXHOST in + their system header (e.g. z/OS). + + * Add an example use of "--env-filter" in "filter-branch" + documentation. + + * "git bundle verify" did not say "records a complete history" for a + bundle that does not have any prerequisites. + + * In the v1.8.0 era, we changed symbols that do not have to be global + to file scope static, but a few functions in graph.c were used by + CGit from sideways bypassing the entry points of the API the + in-tree users use. diff --git a/RelNotes b/RelNotes index bdce3136ea..7a99a15f2f 120000 --- a/RelNotes +++ b/RelNotes @@ -1 +1 @@ -Documentation/RelNotes/1.8.2.txt \ No newline at end of file +Documentation/RelNotes/1.8.2.1.txt \ No newline at end of file