* [ANNOUNCE] GIT 1.6.4-rc3
@ 2009-07-26 8:16 Junio C Hamano
2009-07-27 1:54 ` Chris Hills
2009-07-27 5:13 ` Uwe Kleine-König
0 siblings, 2 replies; 4+ messages in thread
From: Junio C Hamano @ 2009-07-26 8:16 UTC (permalink / raw)
To: git
A release candidate GIT 1.6.4.rc3 is available at the usual places
for testing:
http://www.kernel.org/pub/software/scm/git/
git-1.6.4.rc3.tar.{gz,bz2} (source tarball)
git-htmldocs-1.6.4.rc3.tar.{gz,bz2} (preformatted docs)
git-manpages-1.6.4.rc3.tar.{gz,bz2} (preformatted docs)
The RPM binary packages for a few architectures are found in:
testing/git-*-1.6.4.rc3-1.fc9.$arch.rpm (RPM)
An embarrassing and serious bug in "git am/apply" that was in 1.6.4-rc2
has been squashed, and this snapshot should be both safe to use and is
expected to be the last -rc before the real thing. Please give it a good
beating.
GIT v1.6.4 Release Notes (draft)
================================
With the next major release, "git push" into a branch that is
currently checked out will be refused by default. You can choose
what should happen upon such a push by setting the configuration
variable receive.denyCurrentBranch in the receiving repository.
To ease the transition plan, the receiving repository of such a
push running this release will issue a big warning when the
configuration variable is missing. Please refer to:
http://git.or.cz/gitwiki/GitFaq#non-bare
http://thread.gmane.org/gmane.comp.version-control.git/107758/focus=108007
for more details on the reason why this change is needed and the
transition plan.
For a similar reason, "git push $there :$killed" to delete the branch
$killed in a remote repository $there, if $killed branch is the current
branch pointed at by its HEAD, gets a large warning. You can choose what
should happen upon such a push by setting the configuration variable
receive.denyDeleteCurrent in the receiving repository.
Updates since v1.6.3
--------------------
(subsystems)
* gitweb Perl style clean-up.
* git-svn updates, including a new --authors-prog option to map author
names by invoking an external program, 'git svn reset' to unwind
'git svn fetch', support for more than one branches, documenting
of the useful --minimize-url feature, new "git svn gc" command, etc.
(portability)
* We feed iconv with "UTF-8" instead of "utf8"; the former is
understood more widely. Similarly updated test scripts to use
encoding names more widely understood (e.g. use "ISO8859-1" instead
of "ISO-8859-1").
* Various portability fixes/workarounds for different vintages of
SunOS, IRIX, and Windows.
* Git-over-ssh transport on Windows supports PuTTY plink and TortoisePlink.
(performance)
* Many repeated use of lstat() are optimized out in "checkout" codepath.
* git-status (and underlying git-diff-index --cached) are optimized
to take advantage of cache-tree information in the index.
(usability, bells and whistles)
* "git add --edit" lets users edit the whole patch text to fine-tune what
is added to the index.
* "git am" accepts StGIT series file as its input.
* "git bisect skip" skips to a more randomly chosen place in the hope
to avoid testing a commit that is too close to a commit that is
already known to be untestable.
* "git cvsexportcommit" learned -k option to stop CVS keywords expansion
* "git grep" learned -p option to show the location of the match using the
same context hunk marker "git diff" uses.
* https transport can optionally be told that the used client
certificate is password protected, in which case it asks the
password only once.
* "git imap-send" is IPv6 aware.
* "git log --graph" draws graphs more compactly by using horizontal lines
when able.
* "git log --decorate" shows shorter refnames by stripping well-known
refs/* prefix.
* "git push $name" honors remote.$name.pushurl if present before
using remote.$name.url. In other words, the URL used for fetching
and pushing can be different.
* "git send-email" understands quoted aliases in .mailrc files (might
have to be backported to 1.6.3.X).
* "git send-email" can fetch the sender address from the configuration
variable "sendmail.from" (and "sendmail.<identity>.from").
* "git show-branch" can color its output.
* "add" and "update" subcommands to "git submodule" learned --reference
option to use local clone with references.
* "git submodule update" learned --rebase option to update checked
out submodules by rebasing the local changes.
* "gitweb" can optionally use gravatar to adorn author/committer names.
(developers)
* A major part of the "git bisect" wrapper has moved to C.
* Formatting with the new version of AsciiDoc 8.4.1 is now supported.
Fixes since v1.6.3
------------------
All of the fixes in v1.6.3.X maintenance series are included in this
release, unless otherwise noted.
Here are fixes that this release has, but have not been backported to
v1.6.3.X series.
* "git diff-tree -r -t" used to omit new or removed directories from
the output. df533f3 (diff-tree -r -t: include added/removed
directories in the output, 2009-06-13) may need to be cherry-picked
to backport this fix.
* The way Git.pm sets up a Repository object was not friendly to callers
that chdir around. It now internally records the repository location
as an absolute path when autodetected.
* Removing a section with "git config --remove-section", when its
section header has a variable definition on the same line, lost
that variable definition.
* "git repack" used to faithfully follow grafts and considered true
parents recorded in the commit object unreachable from the commit.
After such a repacking, you cannot remove grafts without corrupting
the repository.
* "git send-email" did not detect erroneous loops in alias expansion.
---
exec >/var/tmp/1
echo O=$(git describe master)
O=v1.6.4-rc2-31-g2ceb639
git shortlog --no-merges $O..master ^maint
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] GIT 1.6.4-rc3
2009-07-26 8:16 [ANNOUNCE] GIT 1.6.4-rc3 Junio C Hamano
@ 2009-07-27 1:54 ` Chris Hills
2009-07-27 3:14 ` Junio C Hamano
2009-07-27 5:13 ` Uwe Kleine-König
1 sibling, 1 reply; 4+ messages in thread
From: Chris Hills @ 2009-07-27 1:54 UTC (permalink / raw)
To: linux-kernel; +Cc: git
On 26/07/09 10:16, Junio C Hamano wrote:
> A release candidate GIT 1.6.4.rc3 is available at the usual places
> for testing:
>
> http://www.kernel.org/pub/software/scm/git/
>
> git-1.6.4.rc3.tar.{gz,bz2} (source tarball)
> git-htmldocs-1.6.4.rc3.tar.{gz,bz2} (preformatted docs)
> git-manpages-1.6.4.rc3.tar.{gz,bz2} (preformatted docs)
Hi
It seems that running `make distclean` removes the configure script. Is
this expected behavior?
Regards,
Chris
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] GIT 1.6.4-rc3
2009-07-27 1:54 ` Chris Hills
@ 2009-07-27 3:14 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2009-07-27 3:14 UTC (permalink / raw)
To: Chris Hills; +Cc: git
Chris Hills <chaz@chaz6.com> writes:
> It seems that running `make distclean` removes the configure
> script. Is this expected behavior?
Yes.
The users are not expected to run configure before building, and we do not
ship a configure script as part of the distribution.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ANNOUNCE] GIT 1.6.4-rc3
2009-07-26 8:16 [ANNOUNCE] GIT 1.6.4-rc3 Junio C Hamano
2009-07-27 1:54 ` Chris Hills
@ 2009-07-27 5:13 ` Uwe Kleine-König
1 sibling, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2009-07-27 5:13 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Hi Junio,
On Sun, Jul 26, 2009 at 01:16:40AM -0700, Junio C Hamano wrote:
> Updates since v1.6.3
> --------------------
>
> [...]
>
> (usability, bells and whistles)
>
> * "git add --edit" lets users edit the whole patch text to fine-tune what
> is added to the index.
>
> * "git am" accepts StGIT series file as its input.
>
> * "git bisect skip" skips to a more randomly chosen place in the hope
> to avoid testing a commit that is too close to a commit that is
> already known to be untestable.
>
> * "git cvsexportcommit" learned -k option to stop CVS keywords expansion
>
> * "git grep" learned -p option to show the location of the match using the
> same context hunk marker "git diff" uses.
>
> * https transport can optionally be told that the used client
> certificate is password protected, in which case it asks the
> password only once.
>
> * "git imap-send" is IPv6 aware.
>
> * "git log --graph" draws graphs more compactly by using horizontal lines
> when able.
>
> * "git log --decorate" shows shorter refnames by stripping well-known
> refs/* prefix.
>
> * "git push $name" honors remote.$name.pushurl if present before
> using remote.$name.url. In other words, the URL used for fetching
> and pushing can be different.
>
> * "git send-email" understands quoted aliases in .mailrc files (might
> have to be backported to 1.6.3.X).
>
> * "git send-email" can fetch the sender address from the configuration
> variable "sendmail.from" (and "sendmail.<identity>.from").
>
> * "git show-branch" can color its output.
>
> * "add" and "update" subcommands to "git submodule" learned --reference
> option to use local clone with references.
>
> * "git submodule update" learned --rebase option to update checked
> out submodules by rebasing the local changes.
>
> * "gitweb" can optionally use gravatar to adorn author/committer names.
>
I'm not really sure if it's worth to point out:
* "git rev-parse" learned "--stop-at-non-option"
But on the other hand I sometimes want to find out the oldest release
supporting a certain feature. Up to you to decide ...
> ---
> exec >/var/tmp/1
> echo O=$(git describe master)
> O=v1.6.4-rc2-31-g2ceb639
> git shortlog --no-merges $O..master ^maint
Is it intended that this occurs in the mail? (Oh, a possible symlink
attack :-)
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-07-27 5:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-26 8:16 [ANNOUNCE] GIT 1.6.4-rc3 Junio C Hamano
2009-07-27 1:54 ` Chris Hills
2009-07-27 3:14 ` Junio C Hamano
2009-07-27 5:13 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).