Skip to content

Commit

Permalink
Changes 1.7.10.3:
Browse files Browse the repository at this point in the history
* The message file for German translation has been updated a bit.
* Running "git checkout" on an unborn branch used to corrupt HEAD.
* When checking out another commit from an already detached state, we
  used to report all commits that are not reachable from any of the
  refs as lossage, but some of them might be reachable from the new
  HEAD, and there is no need to warn about them.
* Some time ago, "git clone" lost the progress output for its
  "checkout" phase; when run without any "--quiet" option, it should
  give progress to the lengthy operation.
* The directory path used in "git diff --no-index", when it recurses
  down, was broken with a recent update after v1.7.10.1 release.
* "log -z --pretty=tformat:..." did not terminate each record with
  NUL.  The fix is not entirely correct when the output also asks for
  --patch and/or --stat, though.
* The DWIM behaviour for "log --pretty=format:%gd -g" was somewhat
  broken and gave undue precedence to configured log.date, causing
  "git stash list" to show "stash@{time stamp string}".
* "git status --porcelain" ignored "--branch" option by mistake.  The
  output for "git status --branch -z" was also incorrect and did not
  terminate the record for the current branch name with NUL as asked.
* When a submodule repository uses alternate object store mechanism,
  some commands that were started from the superproject did not
  notice it and failed with "No such object" errors.  The subcommands
  of "git submodule" command that recursed into the submodule in a
  separate process were OK; only the ones that cheated and peeked
  directly into the submodule's repository from the primary process
  were affected.
  • Loading branch information
adam committed May 28, 2012
1 parent 7fe43cb commit 38f8a73
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions devel/scmgit-base/Makefile
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.46 2012/05/06 18:08:58 adam Exp $
# $NetBSD: Makefile,v 1.47 2012/05/28 13:33:20 adam Exp $

.include "../../devel/scmgit/Makefile.common"

Expand Down Expand Up @@ -89,9 +89,9 @@ SUBST_SED.fix-cd-P= -e "s/cd -P/cd/g"
LDFLAGS.SunOS+= -lintl -lnsl

post-install:
${INSTALL_DATA_DIR} ${DESTDIR:Q}${EGDIR:Q}
${INSTALL_DATA} ${WRKSRC:Q}/contrib/completion/git-completion.bash \
${DESTDIR:Q}${EGDIR:Q}
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_DATA} ${WRKSRC}/contrib/completion/git-completion.bash \
${DESTDIR}${EGDIR}

.include "options.mk"

Expand Down
8 changes: 4 additions & 4 deletions devel/scmgit-base/distinfo
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.53 2012/05/15 20:28:58 adam Exp $
$NetBSD: distinfo,v 1.54 2012/05/28 13:33:20 adam Exp $

SHA1 (git-1.7.10.2.tar.gz) = e4b7f746ff4e356baaddcad0b2911376efde031b
RMD160 (git-1.7.10.2.tar.gz) = 347010cf7c2ea956ff8d8bb04e23035fe1965d68
Size (git-1.7.10.2.tar.gz) = 3809702 bytes
SHA1 (git-1.7.10.3.tar.gz) = 172c6ad5a55276213c5e40b83a4c270f6f931b3e
RMD160 (git-1.7.10.3.tar.gz) = 535e454729531848403bf82b2b34a5e0cdbd6535
Size (git-1.7.10.3.tar.gz) = 3811707 bytes
SHA1 (patch-aa) = ce4ba3241b44e81f9a39986008fbb361062f8470
SHA1 (patch-ac) = ae75c6ca3abb5edf688e4877f3df8b6c6297f091
SHA1 (patch-ae) = d420c0a1db0de77bd9713d066434981b20bd4299
Expand Down
4 changes: 2 additions & 2 deletions devel/scmgit/Makefile.version
@@ -1,6 +1,6 @@
# $NetBSD: Makefile.version,v 1.40 2012/05/15 20:28:58 adam Exp $
# $NetBSD: Makefile.version,v 1.41 2012/05/28 13:33:20 adam Exp $
#
# used by devel/scmgit/Makefile.common
# used by www/gitweb/Makefile

GIT_VERSION= 1.7.10.2
GIT_VERSION= 1.7.10.3

0 comments on commit 38f8a73

Please sign in to comment.