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
ca00f80b
Commit
ca00f80b
authored
Jul 27, 2015
by
Junio C Hamano
Browse files
Options
Downloads
Patches
Plain Diff
Git 2.4.7
Signed-off-by:
Junio C Hamano
<
gitster@pobox.com
>
parent
caac7a3a
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Documentation/RelNotes/2.4.7.txt
+53
-0
53 additions, 0 deletions
Documentation/RelNotes/2.4.7.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
57 additions
and
3 deletions
Documentation/RelNotes/2.4.7.txt
0 → 100644
+
53
−
0
View file @
ca00f80b
Git v2.4.7 Release Notes
========================
Fixes since v2.4.6
------------------
* A minor regression to "git fsck" in v2.2 era was fixed; it
complained about a body-less tag object when it lacked a
separator empty line after its header to separate it with a
non-existent body.
* We used to ask libCURL to use the most secure authentication method
available when talking to an HTTP proxy only when we were told to
talk to one via configuration variables. We now ask libCURL to
always use the most secure authentication method, because the user
can tell libCURL to use an HTTP proxy via an environment variable
without using configuration variables.
* When you say "!<ENTER>" while running say "git log", you'd confuse
yourself in the resulting shell, that may look as if you took
control back to the original shell you spawned "git log" from but
that isn't what is happening. To that new shell, we leaked
GIT_PAGER_IN_USE environment variable that was meant as a local
communication between the original "Git" and subprocesses that was
spawned by it after we launched the pager, which caused many
"interesting" things to happen, e.g. "git diff | cat" still paints
its output in color by default.
Stop leaking that environment variable to the pager's half of the
fork; we only need it on "Git" side when we spawn the pager.
* Avoid possible ssize_t to int truncation.
* "git config" failed to update the configuration file when the
underlying filesystem is incapable of renaming a file that is still
open.
* A minor bugfix when pack bitmap is used with "rev-list --count".
* An ancient test framework enhancement to allow color was not
entirely correct; this makes it work even when tput needs to read
from the ~/.terminfo under the user's real HOME directory.
* Fix a small bug in our use of umask() return value.
* "git rebase" did not exit with failure when format-patch it invoked
failed for whatever reason.
* Disable "have we lost a race with competing repack?" check while
receiving a huge object transfer that runs index-pack.
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 @
ca00f80b
...
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from the 'master'
...
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from the 'master'
branch of the `git.git` repository.
branch of the `git.git` repository.
Documentation for older releases are available here:
Documentation for older releases are available here:
* link:v2.4.
6
/git.html[documentation for release 2.4.
6
]
* link:v2.4.
7
/git.html[documentation for release 2.4.
7
]
* release notes for
* release notes for
link:RelNotes/2.4.7.txt[2.4.7],
link:RelNotes/2.4.6.txt[2.4.6],
link:RelNotes/2.4.6.txt[2.4.6],
link:RelNotes/2.4.5.txt[2.4.5],
link:RelNotes/2.4.5.txt[2.4.5],
link:RelNotes/2.4.4.txt[2.4.4],
link:RelNotes/2.4.4.txt[2.4.4],
...
...
This diff is collapsed.
Click to expand it.
GIT-VERSION-GEN
+
1
−
1
View file @
ca00f80b
#!/bin/sh
#!/bin/sh
GVF
=
GIT-VERSION-FILE
GVF
=
GIT-VERSION-FILE
DEF_VER
=
v2.4.
6
DEF_VER
=
v2.4.
7
LF
=
'
LF
=
'
'
'
...
...
This diff is collapsed.
Click to expand it.
RelNotes
+
1
−
1
View file @
ca00f80b
Documentation/RelNotes/2.4.6.txt
Documentation/RelNotes/2.4.7.txt
\ No newline at end of file
\ 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
sign in
to comment