summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes-1.5.0.1.txt
diff options
context:
space:
mode:
authorNicolas Pitre <nico@fluxnic.net>2010-09-06 20:29:57 -0400
committerJunio C Hamano <gitster@pobox.com>2010-09-06 17:41:18 -0700
commit761e742d69296393804e9a942263e86ece369257 (patch)
tree024ef23b84b09f8e5b59ec28731fffea4ba2130b /Documentation/RelNotes-1.5.0.1.txt
parent7505ae272bad53c6451f34ff5f04ad24f29b6dd9 (diff)
downloadgit-761e742d69296393804e9a942263e86ece369257.tar.gz
Documentation: move RelNotes into a directory of their own
There are 108 of them already. That's a bit more than one third of all the files in the Documentation directory already, and still growing. Signed-off-by: Nicolas Pitre <nico@fluxnic.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes-1.5.0.1.txt')
-rw-r--r--Documentation/RelNotes-1.5.0.1.txt42
1 files changed, 0 insertions, 42 deletions
diff --git a/Documentation/RelNotes-1.5.0.1.txt b/Documentation/RelNotes-1.5.0.1.txt
deleted file mode 100644
index fea3f9935b..0000000000
--- a/Documentation/RelNotes-1.5.0.1.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-GIT v1.5.0.1 Release Notes
-==========================
-
-Fixes since v1.5.0
-------------------
-
-* Documentation updates
-
- - Clarifications and corrections to 1.5.0 release notes.
-
- - The main documentation did not link to git-remote documentation.
-
- - Clarified introductory text of git-rebase documentation.
-
- - Converted remaining mentions of update-index on Porcelain
- documents to git-add/git-rm.
-
- - Some i18n.* configuration variables were incorrectly
- described as core.*; fixed.
-
-* Bugfixes
-
- - git-add and git-update-index on a filesystem on which
- executable bits are unreliable incorrectly reused st_mode
- bits even when the path changed between symlink and regular
- file.
-
- - git-daemon marks the listening sockets with FD_CLOEXEC so
- that it won't be leaked into the children.
-
- - segfault from git-blame when the mandatory pathname
- parameter was missing was fixed; usage() message is given
- instead.
-
- - git-rev-list did not read $GIT_DIR/config file, which means
- that did not honor i18n.logoutputencoding correctly.
-
-* Tweaks
-
- - sliding mmap() inefficiently mmaped the same region of a
- packfile with an access pattern that used objects in the
- reverse order. This has been made more efficient.