<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/git.git, branch v1.6.5.4</title>
<subtitle>Git
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.6.5.4</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.6.5.4'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/'/>
<updated>2009-12-03T08:08:16Z</updated>
<entry>
<title>Git 1.6.5.4</title>
<updated>2009-12-03T08:08:16Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-03T08:08:16Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=eefe19fbfc93b359afe43aa1645eb5591a502f15'/>
<id>urn:sha1:eefe19fbfc93b359afe43aa1645eb5591a502f15</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Unconditionally set man.base.url.for.relative.links</title>
<updated>2009-12-03T08:06:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-03T08:06:52Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=8dd35c7121696851f837a5d8b17adaa99daf83ef'/>
<id>urn:sha1:8dd35c7121696851f837a5d8b17adaa99daf83ef</id>
<content type='text'>
Even setting it to empty is better than leaving it unset as it
prevents the warning cruft from appearing in the output.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation/Makefile: allow man.base.url.for.relative.link to be set from Make</title>
<updated>2009-12-03T02:45:09Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junio@kernel.org</email>
</author>
<published>2009-12-03T02:45:09Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=a479a564dc33bdbc102f2af81ab71ef3e1eae492'/>
<id>urn:sha1:a479a564dc33bdbc102f2af81ab71ef3e1eae492</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junio@kernel.org&gt;
</content>
</entry>
<entry>
<title>Prepare for 1.6.5.4</title>
<updated>2009-12-02T18:29:00Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-02T18:29:00Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=28044baba6d268d91057398ffa041ee1b931a5e0'/>
<id>urn:sha1:28044baba6d268d91057398ffa041ee1b931a5e0</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>merge: do not add standard message when message is given with -m option</title>
<updated>2009-12-02T18:02:08Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-02T18:00:58Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=ce9d823b9141756b5e60aa6c62653adb08e7213b'/>
<id>urn:sha1:ce9d823b9141756b5e60aa6c62653adb08e7213b</id>
<content type='text'>
Even if the user explicitly gave her own message to "git merge", the
command still added its standard merge message.  It resulted in a
useless repetition like this:

    % git merge -m "Merge early part of side branch" `git rev-parse side~2`
    % git show -s
    commit 37217141e7519629353738d5e4e677a15096206f
    Merge: e68e646 a1d2374
    Author: しらいし ななこ &lt;nanako3@lavabit.com&gt;
    Date:   Wed Dec 2 14:33:20 2009 +0900

	Merge early part of side branch

	Merge commit 'a1d2374f8f52f4e8a53171601a920b538a6cec23'

The gave her own message because she didn't want git to add the
standard message (if she wanted to, she wouldn't have given one,
or she would have prepared it using git-fmt-merge-msg command).

Noticed by Nanako Shiraishi

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Do not misidentify "git merge foo HEAD" as an old-style invocation</title>
<updated>2009-12-02T18:01:59Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-02T17:59:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=76bf488e61b8a87191a1779b79820545e64ef275'/>
<id>urn:sha1:76bf488e61b8a87191a1779b79820545e64ef275</id>
<content type='text'>
This was misinterpreted as an ancient style "git merge &lt;message&gt; HEAD
&lt;commit&gt; &lt;commit&gt;..." that merges one (or more) &lt;commit&gt; into the current
branch and record the resulting commit with the given message.  Then a
later sanity check found that there is no &lt;commit&gt; specified and gave
a usage message.

Tested-by: Nanako Shiraishi &lt;nanako3@lavabit.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>help: Do not unnecessarily look for a repository</title>
<updated>2009-12-01T20:10:09Z</updated>
<author>
<name>David Aguilar</name>
<email>davvid@gmail.com</email>
</author>
<published>2009-12-01T19:27:34Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=af6fbf9f814b3ee23b4b6d632131095c0278ae44'/>
<id>urn:sha1:af6fbf9f814b3ee23b4b6d632131095c0278ae44</id>
<content type='text'>
Although 'git help' actually doesn't need to be run inside a git
repository and uses no repository-specific information, it looks for a git
directory.  Searching for a git directory can be annoying in auto-mount
environments.  With this commit, 'git help' no longer searches for a
repository when run without any options.

7c3baa9 originally modified 'git help -a' to not require a repository.
This applies the same fix for 'git help'.

Signed-off-by: David Aguilar &lt;davvid@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: Fix a few i.e./e.g. mix-ups</title>
<updated>2009-12-01T20:09:46Z</updated>
<author>
<name>Michael J Gruber</name>
<email>git@drmicha.warpmail.net</email>
</author>
<published>2009-12-01T09:19:05Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=3c652d16713c27d0abb2003d83a237f7d47ef569'/>
<id>urn:sha1:3c652d16713c27d0abb2003d83a237f7d47ef569</id>
<content type='text'>
A git bundle can be transported by several means (such as e-mail), not
only by snekaernet, so use e.g. instead of i.e.

The mix-up in git-bundle.txt is obvious.

Signed-off-by: Michael J Gruber &lt;git@drmicha.warpmail.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: Document --branch option in git clone synopsis</title>
<updated>2009-11-30T16:47:54Z</updated>
<author>
<name>David Soria Parra</name>
<email>dsp@php.net</email>
</author>
<published>2009-11-30T13:27:52Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=db9bc00e2be37c68589a345112e22dc37743fc5e'/>
<id>urn:sha1:db9bc00e2be37c68589a345112e22dc37743fc5e</id>
<content type='text'>
Document the --branch option as [-b &lt;name&gt;] in git clones synopsis.

Signed-off-by: David Soria Parra &lt;dsp@php.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>builtin-apply.c: pay attention to -p&lt;n&gt; when determining the name</title>
<updated>2009-11-27T03:02:24Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-11-25T10:56:54Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=ec7fc0b1a46c5a352532ea3f29c5663752fd8ac6'/>
<id>urn:sha1:ec7fc0b1a46c5a352532ea3f29c5663752fd8ac6</id>
<content type='text'>
The patch structure has def_name component that is used to validate the
sanity of a "diff --git" patch by checking pathnames that appear on the
patch header lines for consistency.  The git_header_name() function is
used to compute this out of "diff --git a/... b/..." line, but the code
always stripped one level of prefix (i.e. "a/" and "b/"), without paying
attention to -p&lt;n&gt; option.  Code in find_name() function that parses other
lines in the patch header (e.g. "--- a/..." and "+++ b/..." lines) however
did strip the correct number of leading paths prefixes, and the sanity
check between these computed values failed.

Teach git_header_name() to honor -p&lt;n&gt; option like find_name() function
does.

Found and reported by Steven J. Murdoch who also wrote tests.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
