Skip to content

Commit 77acc32

Browse files
committed
Updates to draft release notes to 1.6.4
Signed-off-by: Junio C Hamano <[email protected]>
1 parent bba0fd2 commit 77acc32

File tree

1 file changed

+47
-10
lines changed

1 file changed

+47
-10
lines changed

Documentation/RelNotes-1.6.4.txt

Lines changed: 47 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ branch pointed at by its HEAD, gets a large warning. You can choose what
2222
should happen upon such a push by setting the configuration variable
2323
receive.denyDeleteCurrent in the receiving repository.
2424

25-
When the user does not tell "git push" what to push, it has always
26-
pushed matching refs. For some people it is unexpected, and a new
27-
configuration variable push.default has been introduced to allow
28-
changing a different default behaviour. To advertise the new feature,
29-
a big warning is issued if this is not configured and a git push without
30-
arguments is attempted.
31-
3225

3326
Updates since v1.6.3
3427
--------------------
@@ -38,26 +31,60 @@ Updates since v1.6.3
3831
* gitweb Perl style clean-up.
3932

4033
* git-svn updates, including a new --authors-prog option to map author
41-
names by invoking an external program.
34+
names by invoking an external program, 'git svn reset' to unwind
35+
'git svn fetch', support for more than one branches, etc.
4236

4337
(portability)
4438

4539
* We feed iconv with "UTF-8" instead of "utf8"; the former is
46-
understood more widely.
40+
understood more widely. Similarly updated test scripts to use
41+
encoding names more widely understood (e.g. use "ISO8850-1" instead
42+
of "ISO-8859-1").
43+
44+
* Various portability fixes/workarounds for different vintages of
45+
SunOS, IRIX, and Windows.
46+
47+
* Git-over-ssh transport on Windows supports PuTTY plink and TortoisePlink.
4748

4849
(performance)
4950

51+
* Many repeated use of lstat() are optimized out in "checkout" codepath.
52+
53+
* git-status (and underlying git-diff-index --cached) are optimized
54+
to take advantage of cache-tree information in the index.
55+
5056
(usability, bells and whistles)
5157

5258
* "git add --edit" lets users edit the whole patch text to fine-tune what
5359
is added to the index.
5460

61+
* "git am" accepts StGIT series file as its input.
62+
63+
* "git bisect skip" skips to a more randomly chosen place in the hope
64+
to avoid testing a commit that is too close to a commit that is
65+
already known to be untestable.
66+
67+
* "git cvsexportcommit" learned -k option to stop CVS keywords expansion
68+
69+
* "git grep" learned -p option to show the location of the match using the
70+
same context hunk marker "git diff" uses.
71+
72+
* https transport can optionally be told that the used client
73+
certificate is password protected, in which case it asks the
74+
password only once.
75+
76+
* "git imap-send" is IPv6 aware.
77+
5578
* "git log --graph" draws graphs more compactly by using horizonal lines
5679
when able.
5780

5881
* "git log --decorate" shows shorter refnames by stripping well-known
5982
refs/* prefix.
6083

84+
* "git push $name" honors remote.$name.pushurl if present before
85+
using remote.$name.url. In other words, the URL used for fetching
86+
and pushing can be different.
87+
6188
* "git send-email" understands quoted aliases in .mailrc files (might
6289
have to be backported to 1.6.3.X).
6390

@@ -69,6 +96,11 @@ Updates since v1.6.3
6996
* "add" and "update" subcommands to "git submodule" learned --reference
7097
option to use local clone with references.
7198

99+
* "git submodule update" learned --rebase option to update checked
100+
out submodules by rebasing the local changes.
101+
102+
* "gitweb" can optionally use gravatar to adorn author/committer names.
103+
72104
(developers)
73105

74106
* A major part of the "git bisect" wrapper has moved to C.
@@ -82,12 +114,17 @@ release, unless otherwise noted.
82114
Here are fixes that this release has, but have not been backported to
83115
v1.6.3.X series.
84116

117+
* "git diff-tree -r -t" used to omit new or removed directories from
118+
the output. df533f3 (diff-tree -r -t: include added/removed
119+
directories in the output, 2009-06-13) may need to be cherry-picked
120+
to backport this fix.
121+
85122
* The way Git.pm sets up a Repository object was not friendly to callers
86123
that chdir around. It now internally records the repository location
87124
as an absolute path when autodetected.
88125

89126
---
90127
exec >/var/tmp/1
91128
echo O=$(git describe master)
92-
O=v1.6.3.1-168-g23807fa
129+
O=v1.6.4-rc1-7-gbba0fd2
93130
git shortlog --no-merges $O..master ^maint

0 commit comments

Comments
 (0)