@@ -22,13 +22,6 @@ branch pointed at by its HEAD, gets a large warning. You can choose what
22
22
should happen upon such a push by setting the configuration variable
23
23
receive.denyDeleteCurrent in the receiving repository.
24
24
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
-
32
25
33
26
Updates since v1.6.3
34
27
--------------------
@@ -38,26 +31,60 @@ Updates since v1.6.3
38
31
* gitweb Perl style clean-up.
39
32
40
33
* 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.
42
36
43
37
(portability)
44
38
45
39
* 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.
47
48
48
49
(performance)
49
50
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
+
50
56
(usability, bells and whistles)
51
57
52
58
* "git add --edit" lets users edit the whole patch text to fine-tune what
53
59
is added to the index.
54
60
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
+
55
78
* "git log --graph" draws graphs more compactly by using horizonal lines
56
79
when able.
57
80
58
81
* "git log --decorate" shows shorter refnames by stripping well-known
59
82
refs/* prefix.
60
83
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
+
61
88
* "git send-email" understands quoted aliases in .mailrc files (might
62
89
have to be backported to 1.6.3.X).
63
90
@@ -69,6 +96,11 @@ Updates since v1.6.3
69
96
* "add" and "update" subcommands to "git submodule" learned --reference
70
97
option to use local clone with references.
71
98
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
+
72
104
(developers)
73
105
74
106
* A major part of the "git bisect" wrapper has moved to C.
@@ -82,12 +114,17 @@ release, unless otherwise noted.
82
114
Here are fixes that this release has, but have not been backported to
83
115
v1.6.3.X series.
84
116
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
+
85
122
* The way Git.pm sets up a Repository object was not friendly to callers
86
123
that chdir around. It now internally records the repository location
87
124
as an absolute path when autodetected.
88
125
89
126
---
90
127
exec >/var/tmp/1
91
128
echo O=$(git describe master)
92
- O=v1.6.3.1-168-g23807fa
129
+ O=v1.6.4-rc1-7-gbba0fd2
93
130
git shortlog --no-merges $O..master ^maint
0 commit comments