mirror of
https://github.com/git/git.git
synced 2026-03-14 02:43:25 +01:00
Merge branch 'master' into next
* master: Update draft release notes to 1.7.9 Update draft release notes for 1.7.8.1 Git 1.7.7.5 Git 1.7.6.5 blame: don't overflow time buffer
This commit is contained in:
26
Documentation/RelNotes/1.7.6.5.txt
Normal file
26
Documentation/RelNotes/1.7.6.5.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
Git v1.7.6.5 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.7.6.4
|
||||
--------------------
|
||||
|
||||
* The date parser did not accept timezone designators that lack minutes
|
||||
part and also has a colon between "hh:mm".
|
||||
|
||||
* After fetching from a remote that has very long refname, the reporting
|
||||
output could have corrupted by overrunning a static buffer.
|
||||
|
||||
* "git mergetool" did not use its arguments as pathspec, but as a path to
|
||||
the file that may not even have any conflict.
|
||||
|
||||
* "git name-rev --all" tried to name all _objects_, naturally failing to
|
||||
describe many blobs and trees, instead of showing only commits as
|
||||
advertised in its documentation.
|
||||
|
||||
* "git remote rename $a $b" were not careful to match the remote name
|
||||
against $a (i.e. source side of the remote nickname).
|
||||
|
||||
* "gitweb" used to produce a non-working link while showing the contents
|
||||
of a blob, when JavaScript actions are enabled.
|
||||
|
||||
Also contains minor fixes and documentation updates.
|
||||
14
Documentation/RelNotes/1.7.7.5.txt
Normal file
14
Documentation/RelNotes/1.7.7.5.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
Git v1.7.7.5 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.7.7.4
|
||||
--------------------
|
||||
|
||||
* After fetching from a remote that has very long refname, the reporting
|
||||
output could have corrupted by overrunning a static buffer.
|
||||
|
||||
* "git checkout" and "git merge" treated in-tree .gitignore and exclude
|
||||
file in $GIT_DIR/info/ directory inconsistently when deciding which
|
||||
untracked files are ignored and expendable.
|
||||
|
||||
Also contains minor fixes and documentation updates.
|
||||
17
Documentation/RelNotes/1.7.8.1.txt
Normal file
17
Documentation/RelNotes/1.7.8.1.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
Git v1.7.8.1 Release Notes
|
||||
==========================
|
||||
|
||||
Fixes since v1.7.8.1
|
||||
--------------------
|
||||
|
||||
* In some codepaths (notably, checkout and merge), the ignore patterns
|
||||
recorded in $GIT_DIR/info/exclude were not honored. They now are.
|
||||
|
||||
* After fetching from a remote that has very long refname, the reporting
|
||||
output could have corrupted by overrunning a static buffer.
|
||||
|
||||
* "git checkout" and "git merge" treated in-tree .gitignore and exclude
|
||||
file in $GIT_DIR/info/ directory inconsistently when deciding which
|
||||
untracked files are ignored and expendable.
|
||||
|
||||
Also contains minor fixes and documentation updates.
|
||||
@@ -4,11 +4,24 @@ Git v1.7.9 Release Notes (draft)
|
||||
Updates since v1.7.8
|
||||
--------------------
|
||||
|
||||
* git-gui updated to 0.16.0.
|
||||
|
||||
* git-p4 (in contrib/) updates.
|
||||
|
||||
* Porcelain commands like "git reset" did not distinguish deletions
|
||||
and type-changes from ordinary modification, and reported them with
|
||||
the same 'M' moniker. They now use 'D' (for deletion) and 'T' (for
|
||||
type-change) to match "git status -s" and "git diff --name-status".
|
||||
|
||||
* "git branch -m <current branch> HEAD" is an obvious no-op and is
|
||||
now allowed.
|
||||
|
||||
* "git checkout -B <current branch> <elsewhere>" is a more intuitive
|
||||
way to spell "git reset --keep <elsewhere>".
|
||||
|
||||
* "git checkout" and "git merge" learned "--no-overwrite-ignore" option
|
||||
to tell Git that untracked and ignored files are not expendable.
|
||||
|
||||
* fsck and prune are relatively lengthy operations that still go
|
||||
silent while making the end-user wait. They learned to give progress
|
||||
output like other slow operations.
|
||||
@@ -41,6 +54,10 @@ Updates since v1.7.8
|
||||
which serves as a global fallback for setting 'branch.<name>.rebase'
|
||||
configuration variable per branch.
|
||||
|
||||
* "git tag" learned "--cleanup" option to control how the whitespaces
|
||||
and empty lines in tag message are cleaned up.
|
||||
|
||||
* "gitweb" learned to show side-by-side diff.
|
||||
|
||||
Also contains minor documentation updates and code clean-ups.
|
||||
|
||||
@@ -48,14 +65,31 @@ Also contains minor documentation updates and code clean-ups.
|
||||
Fixes since v1.7.8
|
||||
------------------
|
||||
|
||||
* In some codepaths (notably, checkout and merge), the ignore patterns
|
||||
recorded in $GIT_DIR/info/exclude were not honored. They now are.
|
||||
(merge fc001b5 nd/maint-ignore-exclude later to maint).
|
||||
* The function header pattern for files with "diff=cpp" attribute did
|
||||
not consider "type *funcname(type param1,..." as the beginning of a
|
||||
function.
|
||||
(merge 37e7793 tr/userdiff-c-returns-pointer later to maint).
|
||||
|
||||
* LF-to-CRLF streaming filter used when checking out a large-ish blob
|
||||
fell into an infinite loop with a rare input.
|
||||
(merge 284e3d2 cn/maint-lf-to-crlf-filter later to maint).
|
||||
|
||||
* "git archive" mistakenly allowed remote clients to ask for commits
|
||||
that are not at the tip of any ref.
|
||||
(merge 7b51c33 jk/maint-upload-archive later to maint).
|
||||
|
||||
* "git apply --check" did not error out when given an empty input
|
||||
without any patch.
|
||||
(merge cc64b31 bc/maint-apply-check-no-patch later to maint).
|
||||
|
||||
* The error message from "git diff" and "git status" when they fail
|
||||
to inspect changes in submodules did not report which submodule they
|
||||
had trouble with.
|
||||
(merge 6a5ceda jl/submodule-status-failure-report later to maint).
|
||||
|
||||
--
|
||||
exec >/var/tmp/1
|
||||
O=v1.7.8-162-gd2c7807
|
||||
O=v1.7.8-246-gb3f17ac
|
||||
echo O=$(git describe master)
|
||||
git log --first-parent --oneline --reverse ^$O master
|
||||
echo
|
||||
|
||||
@@ -49,15 +49,20 @@ Documentation for older releases are available here:
|
||||
* release notes for
|
||||
link:RelNotes/1.7.8.txt[1.7.8].
|
||||
|
||||
* link:v1.7.7.1/git.html[documentation for release 1.7.7.1]
|
||||
* link:v1.7.7.5/git.html[documentation for release 1.7.7.5]
|
||||
|
||||
* release notes for
|
||||
link:RelNotes/1.7.7.5.txt[1.7.7.5],
|
||||
link:RelNotes/1.7.7.4.txt[1.7.7.4],
|
||||
link:RelNotes/1.7.7.3.txt[1.7.7.3],
|
||||
link:RelNotes/1.7.7.2.txt[1.7.7.2],
|
||||
link:RelNotes/1.7.7.1.txt[1.7.7.1],
|
||||
link:RelNotes/1.7.7.txt[1.7.7].
|
||||
|
||||
* link:v1.7.6.4/git.html[documentation for release 1.7.6.4]
|
||||
* link:v1.7.6.5/git.html[documentation for release 1.7.6.5]
|
||||
|
||||
* release notes for
|
||||
link:RelNotes/1.7.6.5.txt[1.7.6.5],
|
||||
link:RelNotes/1.7.6.4.txt[1.7.6.4],
|
||||
link:RelNotes/1.7.6.3.txt[1.7.6.3],
|
||||
link:RelNotes/1.7.6.2.txt[1.7.6.2],
|
||||
|
||||
@@ -1598,7 +1598,7 @@ static const char *format_time(unsigned long time, const char *tz_str,
|
||||
int tz;
|
||||
|
||||
if (show_raw_time) {
|
||||
sprintf(time_buf, "%lu %s", time, tz_str);
|
||||
snprintf(time_buf, sizeof(time_buf), "%lu %s", time, tz_str);
|
||||
}
|
||||
else {
|
||||
tz = atoi(tz_str);
|
||||
|
||||
Reference in New Issue
Block a user