Changes 1.7.8.4:

* The code to look up attributes for paths reused entries from a wrong
  directory when two paths in question are in adjacent directories and
  the name of the one directory is a prefix of the other.
* A wildcard that matches deeper hierarchy given to the "diff-index" command,
  e.g. "git diff-index HEAD -- '*.txt'", incorrectly reported additions of
  matching files even when there is no change.
* When producing a "thin pack" (primarily used in bundles and smart
  HTTP transfers) out of a fully packed repository, we unnecessarily
  avoided sending recent objects as a delta against objects we know
  the other side has.
* "git send-email" did not properly treat sendemail.multiedit as a
  boolean (e.g. setting it to "false" did not turn it off).
* Also contains minor fixes and documentation updates.
This commit is contained in:
adam 2012-01-20 15:43:38 +00:00
parent 96638f91dc
commit 6ba87c185c
4 changed files with 10 additions and 9 deletions

View file

@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.37 2011/12/14 15:27:25 gdt Exp $
# $NetBSD: Makefile,v 1.38 2012/01/20 15:43:38 adam Exp $
.include "../../devel/scmgit/Makefile.common"
PKGNAME= scmgit-base-${GIT_VERSION}
PKGREVISION= 1
COMMENT= GIT Tree History Storage Tool (base package)
PKG_DESTDIR_SUPPORT= user-destdir

View file

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.45 2012/01/20 07:03:10 taca Exp $
$NetBSD: distinfo,v 1.46 2012/01/20 15:43:38 adam Exp $
SHA1 (git-1.7.7.6.tar.gz) = 483dc95de0e26f0154fb23444589266b59848cfe
RMD160 (git-1.7.7.6.tar.gz) = 6453d81893f2a32d7d9e93ff1b683b8464d6e6a8
Size (git-1.7.7.6.tar.gz) = 3485668 bytes
SHA1 (git-1.7.8.4.tar.gz) = add7b05f26216181d1b148dde298432132552b0f
RMD160 (git-1.7.8.4.tar.gz) = ee203b3d6252c2df150ef7904c6b95672dea4aff
Size (git-1.7.8.4.tar.gz) = 3544195 bytes
SHA1 (patch-aa) = f47ff9d8b9ba8592f7bbd21d4b0ab30394e8f9a0
SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
SHA1 (patch-ae) = 06ea26658a986dc702c1c2c04c1a27f0a01e4dce

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.11 2011/10/11 12:01:25 adam Exp $
@comment $NetBSD: PLIST,v 1.12 2012/01/20 15:43:38 adam Exp $
man/man1/git-add.1
man/man1/git-am.1
man/man1/git-annotate.1
@ -143,11 +143,13 @@ man/man1/git-whatchanged.1
man/man1/git-write-tree.1
man/man1/git.1
man/man1/gitk.1
man/man1/gitweb.1
man/man5/gitattributes.5
man/man5/githooks.5
man/man5/gitignore.5
man/man5/gitmodules.5
man/man5/gitrepository-layout.5
man/man5/gitweb.conf.5
man/man7/gitcli.7
man/man7/gitcore-tutorial.7
man/man7/gitcvs-migration.7

View file

@ -1,3 +1,3 @@
# $NetBSD: Makefile.version,v 1.31 2012/01/19 20:34:01 gdt Exp $
# $NetBSD: Makefile.version,v 1.32 2012/01/20 15:43:38 adam Exp $
GIT_VERSION= 1.7.7.6
GIT_VERSION= 1.7.8.4