Skip to content

Commit 6b149ce

Browse files
committed
Start merging the sixth batch for 1.8.0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0577c59 commit 6b149ce

File tree

1 file changed

+18
-33
lines changed

1 file changed

+18
-33
lines changed

Documentation/RelNotes/1.8.0.txt

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Foreign Interface
5959

6060
* "git svn" has been updated to work with SVN 1.7.
6161

62+
6263
Performance, Internal Implementation, etc. (please report possible regressions)
6364

6465
* Git ships with a fall-back regexp implementation for platforms with
@@ -75,6 +76,9 @@ Performance, Internal Implementation, etc. (please report possible regressions)
7576
* Compatibility wrapper around some mkdir(2) implementations that
7677
reject parameter with trailing slash has been introduced.
7778

79+
* Compatibility wrapper for systems that lack usable setitimer() has
80+
been added.
81+
7882
* Many internal uses of "git merge-base" equivalent were only to see
7983
if one commit fast-forwards to the other, which did not need the
8084
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)
8791
* Messages given by "git <subcommand> -h" from many subcommands have
8892
been marked for translation.
8993

94+
9095
Also contains minor documentation updates and code clean-ups.
9196

9297

@@ -97,6 +102,18 @@ Unless otherwise noted, all the fixes since v1.7.12 in the
97102
maintenance track are contained in this release (see release notes
98103
to them for details).
99104

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+
100117
* "git show --format='%ci'" did not give timestamp correctly for
101118
commits created without human readable name on "committer" line.
102119
(merge e27ddb6 jc/maint-ident-missing-human-name later to maint).
@@ -120,46 +137,14 @@ to them for details).
120137
branches were counting in bytes, not in display columns.
121138
(merge 1452bd6 nd/branch-v-alignment later to maint).
122139

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-
133140
* When looking for $HOME/.gitconfig etc., it is OK if we cannot read
134141
them because they do not exist, but we did not diagnose existing
135142
files that we cannot read.
136143

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-
159144
* The interactive prompt "git send-email" gives was error prone. It
160145
asked "What e-mail address do you want to use?" with the address it
161146
guessed (correctly) the user would want to use in its prompt,
162147
tempting the user to say "y". But the response was taken as "No,
163148
please use 'y' as the e-mail address instead", which is most
164149
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

Comments
 (0)