@@ -59,6 +59,7 @@ Foreign Interface
59
59
60
60
* "git svn" has been updated to work with SVN 1.7.
61
61
62
+
62
63
Performance, Internal Implementation, etc. (please report possible regressions)
63
64
64
65
* Git ships with a fall-back regexp implementation for platforms with
@@ -75,6 +76,9 @@ Performance, Internal Implementation, etc. (please report possible regressions)
75
76
* Compatibility wrapper around some mkdir(2) implementations that
76
77
reject parameter with trailing slash has been introduced.
77
78
79
+ * Compatibility wrapper for systems that lack usable setitimer() has
80
+ been added.
81
+
78
82
* Many internal uses of "git merge-base" equivalent were only to see
79
83
if one commit fast-forwards to the other, which did not need the
80
84
full set of merge bases to be computed. They have been updated to
@@ -87,6 +91,7 @@ Performance, Internal Implementation, etc. (please report possible regressions)
87
91
* Messages given by "git <subcommand> -h" from many subcommands have
88
92
been marked for translation.
89
93
94
+
90
95
Also contains minor documentation updates and code clean-ups.
91
96
92
97
@@ -97,6 +102,18 @@ Unless otherwise noted, all the fixes since v1.7.12 in the
97
102
maintenance track are contained in this release (see release notes
98
103
to them for details).
99
104
105
+ * The subcommand in "git remote" to remove a defined remote was
106
+ "rm" and the command did not take a fully-spelled "remove".
107
+ (merge e17dba8 nd/maint-remote-remove later to maint).
108
+
109
+ * After "gitk" showed the contents of a tag, neither "Reread
110
+ references" nor "Reload" did not update what is shown as the
111
+ contents of it, when the user overwrote the tag with "git tag -f".
112
+
113
+ * "git cvsimport" did not thoroughly cleanse tag names that it
114
+ inferred from the names of the tags it obtained from CVS, which
115
+ caused "git tag" to barf and stop the import in the middle.
116
+
100
117
* "git show --format='%ci'" did not give timestamp correctly for
101
118
commits created without human readable name on "committer" line.
102
119
(merge e27ddb6 jc/maint-ident-missing-human-name later to maint).
@@ -120,46 +137,14 @@ to them for details).
120
137
branches were counting in bytes, not in display columns.
121
138
(merge 1452bd6 nd/branch-v-alignment later to maint).
122
139
123
- * "git for-each-ref" did not currectly support more than one --sort
124
- option.
125
- (merge 3b51222 kk/maint-for-each-ref-multi-sort later to maint).
126
-
127
- * Pushing to smart HTTP server with recent Git fails without having
128
- the username in the URL to force authentication, if the server is
129
- configured to allow GET anonymously, while requiring authentication
130
- for POST.
131
- (merge b81401c jk/maint-http-half-auth-push later to maint).
132
-
133
140
* When looking for $HOME/.gitconfig etc., it is OK if we cannot read
134
141
them because they do not exist, but we did not diagnose existing
135
142
files that we cannot read.
136
143
137
- * The synopsis said "checkout [-B branch]" to make it clear the
138
- branch name is a parameter to the option, but the heading for the
139
- option description was "-B::", not "-B branch::", making the
140
- documentation misleading. There may be room in documentation pages
141
- of other commands for similar improvements (hint, hint).
142
- (merge 45aaf03 jc/maint-doc-checkout-b-always-takes-branch-name later to maint).
143
-
144
- * "git log .." errored out saying it is both rev range and a path
145
- when there is no disambiguating "--" is on the command line.
146
- Update the command line parser to interpret ".." as a path in such
147
- a case.
148
- (merge 003c84f jc/dotdot-is-parent-directory later to maint).
149
-
150
- * "git apply -p0" did not parse pathnames on "diff --git" line
151
- correctly. This caused patches that had pathnames in no other
152
- places to be mistakenly rejected (most notably, binary patch that
153
- does not rename nor change mode). Textual patches, renames or mode
154
- changes have preimage and postimage pathnames in different places
155
- in a form that can be parsed unambiguously and did not suffer from
156
- this problem.
157
- (merge 6a2abdc jc/apply-binary-p0 later to maint).
158
-
159
144
* The interactive prompt "git send-email" gives was error prone. It
160
145
asked "What e-mail address do you want to use?" with the address it
161
146
guessed (correctly) the user would want to use in its prompt,
162
147
tempting the user to say "y". But the response was taken as "No,
163
148
please use 'y' as the e-mail address instead", which is most
164
149
certainly not what the user meant.
165
- (merge 51bbccf jc /send-email-reconfirm later to maint).
150
+ (merge 6183749 sb /send-email-reconfirm-fix later to maint).
0 commit comments