From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754211AbZDTEmr (ORCPT ); Mon, 20 Apr 2009 00:42:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753109AbZDTEmW (ORCPT ); Mon, 20 Apr 2009 00:42:22 -0400 Received: from a-sasl-quonix.sasl.smtp.pobox.com ([208.72.237.25]:33841 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751148AbZDTEmT convert rfc822-to-8bit (ORCPT ); Mon, 20 Apr 2009 00:42:19 -0400 From: Junio C Hamano To: git@vger.kernel.org Subject: [ANNOUNCE] GIT 1.6.2.4 Date: Sun, 19 Apr 2009 21:42:10 -0700 Message-ID: <7v4owklyvx.fsf@gitster.siamese.dyndns.org> User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Pobox-Relay-ID: A127A3A8-2D65-11DE-848E-DC76898A30C1-77302942!a-sasl-quonix.pobox.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The latest maintenance release GIT 1.6.2.4 is available at the usual places: http://www.kernel.org/pub/software/scm/git/ git-1.6.2.4.tar.{gz,bz2} (source tarball) git-htmldocs-1.6.2.4.tar.{gz,bz2} (preformatted docs) git-manpages-1.6.2.4.tar.{gz,bz2} (preformatted docs) The RPM binary packages for a few architectures are found in: RPMS/$arch/git-*-1.6.2.4-1.fc9.$arch.rpm (RPM) This contains bunch of fixes that have already been merged to the master branch in preparation for 1.6.3. ---------------------------------------------------------------- GIT v1.6.2.4 Release Notes ========================== Fixes since v1.6.2.3 -------------------- * The configuration parser had a buffer overflow while parsing an overlong value. * pruning reflog entries that are unreachable from the tip of the ref during "git reflog prune" (hence "git gc") was very inefficient. * "git-add -p" lacked a way to say "q"uit to refuse staging any hunks for the remaining paths. You had to say "d" and then ^C. * "git-checkout " did not update the index entry at the named path; it now does. * "git-fast-export" choked when seeing a tag that does not point at commit. * "git init" segfaulted when given an overlong template location via the --template= option. * "git-ls-tree" and "git-diff-tree" used a pathspec correctly when deciding to descend into a subdirectory but they did not match the individual paths correctly. This caused pathspecs "abc/d ab" to match "abc/0" ("abc/d" made them decide to descend into the directory "abc/", and then "ab" incorrectly matched "abc/0" when it shouldn't). * "git-merge-recursive" was broken when a submodule entry was involved in a criss-cross merge situation. Many small documentation updates are included as well. ---------------------------------------------------------------- Changes since v1.6.2.3 are as follows: Björn Steinbrink (1): tree_entry_interesting: a pathspec only matches at directory boundary Clemens Buchacher (3): add tests for merging with submodules update cache for conflicting submodule entries simplify output of conflicting merge Erik Faye-Lund (4): test-suite: adding a test for fast-export with tag variants builtin-fast-export.c: turn error into warning builtin-fast-export.c: fix crash on tagged trees builtin-fast-export.c: handle nested tags Frank Lichtenheld (1): init: Do not segfault on big GIT_TEMPLATE_DIR environment variable Jeff King (2): doc/gitattributes: clarify location of config text add-interactive: refactor mode hunk handling Johan Herland (1): Update docs on behaviour of 'core.sharedRepository' and 'git init --shared' Johannes Schindelin (1): Fix 'git checkout ' to update the index Johannes Sixt (1): t1301-shared-repo: fix forced modes test Junio C Hamano (3): match_tree_entry(): a pathspec only matches at directory boundaries Describe fixes since 1.6.2.3 GIT 1.6.2.4 Junio Hamano (1): Speed up reflog pruning of unreachable commits Linus Torvalds (1): Clean up reflog unreachability pruning decision Markus Heidelberg (2): doc/git-daemon: add missing arguments to options doc/git-daemon: add missing arguments to max-connections option Matthieu Moy (2): git add -p: new "quit" command at the prompt. Update git-add.txt according to the new possibilities of 'git add -p'. Nguyễn Thái Ngọc Duy (1): Makefile: remove {fetch,send}-pack from PROGRAMS as they are builtins Paul Bolle (1): imap-send: use correct configuration variable in documentation Thomas Jarosch (1): Fix buffer overflow in config parser Ulrich Windl (1): git-apply: fix option description