-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information
Showing
3 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Git v1.7.7 Release Notes | ||
======================== | ||
|
||
Updates since v1.7.6 | ||
-------------------- | ||
|
||
* The scripting part of the codebase is getting prepared for i18n/l10n. | ||
|
||
* "git checkout" (both the code to update the files upon checking out a | ||
different branch, the code to checkout specific set of files) learned | ||
to stream the data from object store when possible, without having to | ||
read the entire contents of a file in memory first. | ||
|
||
* "git diff --cc" learned to correctly ignore binary files. | ||
|
||
* "git diff --stat" learned --stat-count option to limit the output of | ||
diffstat report. | ||
|
||
* "git grep" learned --break and --heading options, to let users mimic | ||
output format of "ack". | ||
|
||
Also contains various documentation updates and minor miscellaneous | ||
changes. | ||
|
||
|
||
Fixes since v1.7.6 | ||
------------------ | ||
|
||
Unless otherwise noted, all the fixes in 1.7.6.X maintenance track are | ||
included in this release. | ||
|
||
-- | ||
exec >/var/tmp/1 | ||
echo O=$(git describe master) | ||
O=v1.7.6-133-g395f65d | ||
git shortlog --no-merges ^maint ^$O master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
|
||
GVF=GIT-VERSION-FILE | ||
DEF_VER=v1.7.6 | ||
DEF_VER=v1.7.6.GIT | ||
|
||
LF=' | ||
' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Documentation/RelNotes/1.7.6.txt | ||
Documentation/RelNotes/1.7.7.txt |