-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Junio C Hamano
committed
May 26, 2009
1 parent
2a1feb9
commit e57cb01
Showing
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
GIT v1.6.3.2 Release Notes | ||
========================== | ||
|
||
Fixes since v1.6.3.1 | ||
-------------------- | ||
|
||
* A few codepaths picked up the first few bytes from an sha1[] by | ||
casting the (char *) pointer to (int *); GCC 4.4 did not like this, | ||
and aborted compilation. | ||
|
||
* http-push had a small use-after-free bug. | ||
|
||
* command completion code in bash did not reliably detect that we are | ||
in a bare repository. | ||
|
||
* "git for-each-ref" had a segfaulting bug when dealing with a tag object | ||
created by an ancient git. | ||
|
||
* Some unlink(2) failures went undiagnosed. | ||
|
||
* The "recursive" merge strategy misbehaved when faced rename/delete | ||
conflicts while coming up with an intermediate merge base. | ||
|
||
* GIT_TRACE mechanism segfaulted when tracing a shell-quoted aliases. | ||
|
||
* "git add ." in an empty directory complained that pathspec "." did not | ||
match anything, which may be technically correct, but not useful. We | ||
silently make it a no-op now. | ||
|
||
* "git format-patch -k" still added patch numbers if format.numbered | ||
configuration was set. | ||
|
||
* OpenBSD also uses st_ctimspec in "struct stat", instead of "st_ctim". | ||
|
||
* With NO_CROSS_DIRECTORY_HARDLINKS, "make install" can be told not to | ||
create hardlinks between $(gitexecdir)/git-$builtin_commands and | ||
$(bindir)/git. | ||
|
||
* "git push" was converting OFS_DELTA pack representation into less | ||
efficient REF_DELTA representation unconditionally upon transfer, | ||
making the transferred data unnecessarily larger. | ||
|
||
Many other general usability updates around help text, diagnostic messages | ||
and documentation are included as well. | ||
|
||
--- | ||
exec >/var/tmp/1 | ||
O=v1.6.3.1-51-g2a1feb9 | ||
echo O=$(git describe maint) | ||
git shortlog --no-merges $O..maint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Documentation/RelNotes-1.6.3.1.txt | ||
Documentation/RelNotes-1.6.3.2.txt |