-
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 <gitster@pobox.com>
- Loading branch information
Junio C Hamano
committed
Dec 5, 2011
1 parent
7d883c7
commit 7e02a6c
Showing
3 changed files
with
29 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,27 @@ | ||
Git v1.7.9 Release Notes (draft) | ||
======================== | ||
|
||
Updates since v1.7.8 | ||
-------------------- | ||
|
||
* 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". | ||
|
||
* 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. | ||
|
||
* The set of built-in function-header patterns for various languages | ||
knows MATLAB. | ||
|
||
May also contain 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). |
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.8 | ||
DEF_VER=v1.7.8.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.8.txt | ||
Documentation/RelNotes/1.7.9.txt |