Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
git-rfc3161
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CSG
git-rfc3161
Commits
27ea6f85
Commit
27ea6f85
authored
9 years ago
by
Junio C Hamano
Browse files
Options
Downloads
Patches
Plain Diff
Git 2.5.2
Signed-off-by:
Junio C Hamano
<
gitster@pobox.com
>
parent
3d3caf0b
Branches
Branches containing commit
Tags
v2.5.2
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Documentation/RelNotes/2.5.2.txt
+63
-0
63 additions, 0 deletions
Documentation/RelNotes/2.5.2.txt
Documentation/git.txt
+2
-1
2 additions, 1 deletion
Documentation/git.txt
GIT-VERSION-GEN
+1
-1
1 addition, 1 deletion
GIT-VERSION-GEN
RelNotes
+1
-1
1 addition, 1 deletion
RelNotes
with
67 additions
and
3 deletions
Documentation/RelNotes/2.5.2.txt
0 → 100644
+
63
−
0
View file @
27ea6f85
Git v2.5.2 Release Notes
========================
Fixes since v2.5.1
------------------
* "git init empty && git -C empty log" said "bad default revision 'HEAD'",
which was found to be a bit confusing to new users.
* The "interpret-trailers" helper mistook a multi-paragraph title of
a commit log message with a colon in it as the end of the trailer
block.
* When re-priming the cache-tree opportunistically while committing
the in-core index as-is, we mistakenly invalidated the in-core
index too aggressively, causing the experimental split-index code
to unnecessarily rewrite the on-disk index file(s).
* "git archive" did not use zip64 extension when creating an archive
with more than 64k entries, which nobody should need, right ;-)?
* The code in "multiple-worktree" support that attempted to recover
from an inconsistent state updated an incorrect file.
* "git rev-list" does not take "--notes" option, but did not complain
when one is given.
* Because the configuration system does not allow "alias.0foo" and
"pager.0foo" as the configuration key, the user cannot use '0foo'
as a custom command name anyway, but "git 0foo" tried to look these
keys up and emitted useless warnings before saying '0foo is not a
git command'. These warning messages have been squelched.
* We recently rewrote one of the build scripts in Perl, which made it
necessary to have Perl to build Git. Reduced Perl dependency by
rewriting it again using sed.
* t1509 test that requires a dedicated VM environment had some
bitrot, which has been corrected.
* strbuf_read() used to have one extra iteration (and an unnecessary
strbuf_grow() of 8kB), which was eliminated.
* The codepath to produce error messages had a hard-coded limit to
the size of the message, primarily to avoid memory allocation while
calling die().
* When trying to see that an object does not exist, a state errno
leaked from our "first try to open a packfile with O_NOATIME and
then if it fails retry without it" logic on a system that refuses
O_NOATIME. This confused us and caused us to die, saying that the
packfile is unreadable, when we should have just reported that the
object does not exist in that packfile to the caller.
* An off-by-one error made "git remote" to mishandle a remote with a
single letter nickname.
* A handful of codepaths that used to use fixed-sized arrays to hold
pathnames have been corrected to use strbuf and other mechanisms to
allow longer pathnames without fearing overflows.
Also contains typofixes, documentation updates and trivial code
clean-ups.
This diff is collapsed.
Click to expand it.
Documentation/git.txt
+
2
−
1
View file @
27ea6f85
...
...
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from the 'master'
branch of the `git.git` repository.
Documentation for older releases are available here:
* link:v2.5.
1
/git.html[documentation for release 2.5.
1
]
* link:v2.5.
2
/git.html[documentation for release 2.5.
2
]
* release notes for
link:RelNotes/2.5.2.txt[2.5.2],
link:RelNotes/2.5.1.txt[2.5.1],
link:RelNotes/2.5.0.txt[2.5].
...
...
This diff is collapsed.
Click to expand it.
GIT-VERSION-GEN
+
1
−
1
View file @
27ea6f85
#!/bin/sh
GVF
=
GIT-VERSION-FILE
DEF_VER
=
v2.5.
1
DEF_VER
=
v2.5.
2
LF
=
'
'
...
...
This diff is collapsed.
Click to expand it.
RelNotes
+
1
−
1
View file @
27ea6f85
Documentation/RelNotes/2.5.1.txt
\ No newline at end of file
Documentation/RelNotes/2.5.2.txt
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment