-
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 17, 2014
1 parent
6898b79
commit 8333263
Showing
4 changed files
with
38 additions
and
3 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,34 @@ | ||
Git v1.9.5 Release Notes | ||
======================== | ||
|
||
Fixes since v1.9.4 | ||
------------------ | ||
|
||
* We used to allow committing a path ".Git/config" with Git that is | ||
running on a case sensitive filesystem, but an attempt to check out | ||
such a path with Git that runs on a case insensitive filesystem | ||
would have clobbered ".git/config", which is definitely not what | ||
the user would have expected. Git now prevents you from tracking | ||
a path with ".Git" (in any case combination) as a path component. | ||
|
||
* On Windows, certain path components that are different from ".git" | ||
are mapped to ".git", e.g. "git~1/config" is treated as if it were | ||
".git/config". HFS+ has a similar issue, where certain unicode | ||
codepoints are ignored, e.g. ".g\u200cit/config" is treated as if | ||
it were ".git/config". Pathnames with these potential issues are | ||
rejected on the affected systems. Git on systems that are not | ||
affected by this issue (e.g. Linux) can also be configured to | ||
reject them to ensure cross platform interoperability of the hosted | ||
projects. | ||
|
||
* "git fsck" notices a tree object that records such a path that can | ||
be confused with ".git", and with receive.fsckObjects configuration | ||
set to true, an attempt to "git push" such a tree object will be | ||
rejected. Such a path may not be a problem on a well behaving | ||
filesystem but in order to protect those on HFS+ and on case | ||
insensitive filesystems, this check is enabled on all platforms. | ||
|
||
A big "thanks!" for bringing this issue to us goes to our friends in | ||
the Mercurial land, namely, Matt Mackall and Augie Fackler. | ||
|
||
Also contains typofixes, documentation updates and trivial code clean-ups. |
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
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.9.4 | ||
DEF_VER=v1.9.5 | ||
|
||
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.9.4.txt | ||
Documentation/RelNotes/1.9.5.txt |