From: Junio C Hamano
Date: Thu, 26 Apr 2007 07:20:04 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.2-rc0-56-g6169a
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=45889b44baad996378f334ac546f4cf08147fff6;p=git.git
Autogenerated HTML docs for v1.5.2-rc0-56-g6169a
---
diff --git a/RelNotes-1.5.1.3.txt b/RelNotes-1.5.1.3.txt
new file mode 100644
index 000000000..9a4b069cc
--- /dev/null
+++ b/RelNotes-1.5.1.3.txt
@@ -0,0 +1,38 @@
+GIT v1.5.1.3 Release Notes (draft)
+==========================
+
+Fixes since v1.5.1.2
+--------------------
+
+* Bugfixes
+
+ - git-add tried to optimize by finding common leading
+ directories across its arguments but botched, causing very
+ confused behaviour.
+
+ - unofficial rpm.spec file shipped with git was letting
+ ETC_GITCONFIG set to /usr/etc/gitconfig. Tweak the official
+ Makefile to make it harder for distro people to make the
+ same mistake, by setting the variable to /etc/gitconfig if
+ prefix is set to /usr.
+
+ - git-svn inconsistently stripped away username from the URL
+ only when svnsync_props was in use.
+
+ - git-send-email was not quoting recipient names that have
+ period '.' in them. Also it did not allow overriding
+ envelope sender, which made it impossible to send patches to
+ certain subscriber-only lists.
+
+ - built-in write_tree() routine had a sequence that renamed a
+ file that is still open, which some systems did not like.
+
+ - when memory is very tight, sliding mmap code to read
+ packfiles incorrectly closed the fd that was still being
+ used to read the pack.
+
+---
+exec >/var/tmp/1
+O=v1.5.1.2-23-gbf7af11
+echo O=`git describe refs/heads/maint`
+git shortlog --no-merges $O..refs/heads/maint
diff --git a/core-tutorial.html b/core-tutorial.html
index 7226c559b..7daeca47a 100644
--- a/core-tutorial.html
+++ b/core-tutorial.html
@@ -583,10 +583,9 @@ argument to git-commit-tree.
git-commit-tree normally takes several arguments — it wants to know
what the parent of a commit was, but since this is the first commit
ever in this new repository, and it has no parents, we only need to pass in
-the object name of the tree. However, git-commit-tree
-also wants to get a commit message
-on its standard input, and it will write out the resulting object name for the
-commit to its standard output.
+the object name of the tree. However, git-commit-tree also wants to get a
+commit message on its standard input, and it will write out the resulting
+object name for the commit to its standard output.
And this is where we create the .git/refs/heads/master file
which is pointed at by HEAD. This file is supposed to contain
the reference to the top-of-tree of the master branch, and since
@@ -1528,7 +1527,7 @@ differences since stage 2 (i.e. your version).
So, we can use somebody else's work from a remote repository, but
how can you prepare a repository to let other people pull from
it?
-Your do your real work in your working tree that has your
+
You do your real work in your working tree that has your
primary repository hanging under it as its .git subdirectory.
You could make that repository accessible remotely and ask
people to pull from it, but in practice that is not the way
@@ -1969,7 +1968,7 @@ to follow, not easier.