From: Junio C Hamano Date: Wed, 14 Feb 2007 23:45:04 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.0-31-g78e90 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fd468962039a6dcb0cd360ac60a3e7631b2b3b5d;p=git.git Autogenerated HTML docs for v1.5.0-31-g78e90 --- diff --git a/RelNotes-1.5.0.1.txt b/RelNotes-1.5.0.1.txt new file mode 100644 index 000000000..982282a89 --- /dev/null +++ b/RelNotes-1.5.0.1.txt @@ -0,0 +1,20 @@ +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. + +* Bugfixes + + - git-daemon marks the listening sockets with FD_CLOEXEC so + that it won't be leaked into the children. + +-- +O=v1.5.0-7-g37b73cf +echo O=`git describe maint` +git shortlog --no-merges $O.. diff --git a/RelNotes-1.5.0.txt b/RelNotes-1.5.0.txt index f0120e1f5..599efb8c9 100644 --- a/RelNotes-1.5.0.txt +++ b/RelNotes-1.5.0.txt @@ -25,12 +25,18 @@ Specifically, the available options are: older clients over dumb transports (e.g. http) using older versions of git will also be affected. + To let git use the new loose object format, you have to + set core.legacyheaders to false. + - Since v1.4.3, configuration repack.usedeltabaseoffset allows packfile to be created in more space efficient format, which cannot be read by git older than that version. -The above two are not enabled by default and you explicitly have -to ask for them, because these two features make repositories + To let git use the new format for packfiles, you have to + set repack.usedeltabaseoffset to true. + +The above two new features are not enabled by default and you +have to explicitly ask for them, because they make repositories unreadable by older versions of git, and in v1.5.0 we still do not enable them by default for the same reason. We will change this default probably 1 year after 1.4.2's release, when it is @@ -217,7 +223,7 @@ Updates in v1.5.0 since v1.4.4 series "branch@{Nth}" notation. - "git show-branch" learned showing the reflog data with the - new -g option. "git log" has -s option to view reflog + new -g option. "git log" has -g option to view reflog entries in a more verbose manner. - git-branch knows how to rename branches and moves existing @@ -253,9 +259,6 @@ Updates in v1.5.0 since v1.4.4 series above sentence, as git-prune does not remove things reachable from reflog entries. - - 'git-prune' by default does not remove _everything_ - unreachable, as there is a one-day grace period built-in. - - There is a toplevel garbage collector script, 'git-gc', that runs periodic cleanup functions, including 'git-repack -a -d', 'git-reflog expire', 'git-pack-refs --prune', and 'git-rerere diff --git a/RelNotes-1.5.1.txt b/RelNotes-1.5.1.txt new file mode 100644 index 000000000..1bb6cc1c5 --- /dev/null +++ b/RelNotes-1.5.1.txt @@ -0,0 +1,39 @@ +GIT v1.5.1 Release Notes +======================== + +Updates since v1.5.0 +-------------------- + +* Deprecated commands and options. + + - git-diff-stages and git-resolve have been removed. + +* New commands and options. + + - "git log" and friends take --reverse. This makes output + that typically goes reverse order in chronological order. + "git shortlog" usually lists commits in chronological order, + but with "--reverse", they are shown in reverse + chronological order. + + - "git diff" learned --ignore-space-at-eol. This is a weaker + form of --ignore-space-change. + +* Updated behaviour of existing commands. + + - "git diff" outputs a trailing HT when pathnames have embedded + SP on +++/--- header lines, in order to help "GNU patch" to + parse its output. "git apply" was already updated to accept + this modified output format since ce74618d (Sep 22, 2006). + +* Hooks + + - The sample update hook to show how to send out notification + e-mail was updated to show only new commits that appeared in + the repository. Earlier, it showed new commits that appeared + on the branch. + +-- +O=v1.5.0-20-ga44a0c9 +echo O=`git describe master` +git shortlog --no-merges $O.. diff --git a/diff-options.txt b/diff-options.txt index 019a39f2b..d8696b7b3 100644 --- a/diff-options.txt +++ b/diff-options.txt @@ -140,6 +140,9 @@ -a:: Shorthand for "--text". +--ignore-space-at-eol:: + Ignore changes in white spaces at EOL. + --ignore-space-change:: Ignore changes in amount of white space. This ignores white space at line end, and consider all other sequences of one or diff --git a/git-diff-files.html b/git-diff-files.html index 7405535ce..655fa2794 100644 --- a/git-diff-files.html +++ b/git-diff-files.html @@ -592,6 +592,14 @@ same as "git-diff-index" and "git-diff-tree".

+--ignore-space-at-eol +
+
+

+ Ignore changes in white spaces at EOL. +

+
+
--ignore-space-change
@@ -995,7 +1003,7 @@ two unresolved merge parents with the working tree file diff --git a/git-diff-index.html b/git-diff-index.html index 8fea5dede..0e564002d 100644 --- a/git-diff-index.html +++ b/git-diff-index.html @@ -593,6 +593,14 @@ entries in the index are compared.

+--ignore-space-at-eol +
+
+

+ Ignore changes in white spaces at EOL. +

+
+
--ignore-space-change
@@ -1085,7 +1093,7 @@ always have the special all-zero sha1. diff --git a/git-diff-tree.html b/git-diff-tree.html index 2920f5f2c..e37c93479 100644 --- a/git-diff-tree.html +++ b/git-diff-tree.html @@ -595,6 +595,14 @@ git-diff-tree(1) Manual Page

+--ignore-space-at-eol +
+
+

+ Ignore changes in white spaces at EOL. +

+
+
--ignore-space-change
@@ -1289,7 +1297,7 @@ two unresolved merge parents with the working tree file diff --git a/git-diff.html b/git-diff.html index 8374fdb26..580b20405 100644 --- a/git-diff.html +++ b/git-diff.html @@ -641,6 +641,14 @@ any <tree-ish>.

+--ignore-space-at-eol +
+
+

+ Ignore changes in white spaces at EOL. +

+
+
--ignore-space-change
@@ -828,7 +836,7 @@ output diff in reverse.