<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/git.git/contrib/subtree, branch bc/commit-invalid-utf8</title>
<subtitle>github.com: git/git.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/'/>
<entry>
<title>Merge branch 'dm/unbash-subtree' into maint</title>
<updated>2013-07-03T22:39:37+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-07-03T22:39:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=a256a58081e76858a72c41498e23c6c9e67d5127'/>
<id>a256a58081e76858a72c41498e23c6c9e67d5127</id>
<content type='text'>
* dm/unbash-subtree:
  contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* dm/unbash-subtree:
  contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash</title>
<updated>2013-05-21T16:24:17+00:00</updated>
<author>
<name>Dmitry Marakasov</name>
<email>amdmi3@amdmi3.ru</email>
</author>
<published>2013-05-20T20:24:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=6912ea952bf5d1b2d21d5935d6b726bab02d8bf6'/>
<id>6912ea952bf5d1b2d21d5935d6b726bab02d8bf6</id>
<content type='text'>
Use /bin/sh interpreter instead of /bin/bash for contrib/git-subtree:
it's required for systems which don't use bash by default (for example,
FreeBSD), while there seem to be no bashisms in the script (confirmed
by looking through the source and tesing subtree functionality with
FreeBSD's /bin/sh) to require specifically bash and not the generic
posix shell.

Signed-off-by: Dmitry Marakasov &lt;amdmi3@amdmi3.ru&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use /bin/sh interpreter instead of /bin/bash for contrib/git-subtree:
it's required for systems which don't use bash by default (for example,
FreeBSD), while there seem to be no bashisms in the script (confirmed
by looking through the source and tesing subtree functionality with
FreeBSD's /bin/sh) to require specifically bash and not the generic
posix shell.

Signed-off-by: Dmitry Marakasov &lt;amdmi3@amdmi3.ru&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: don't delete remote branches if split fails</title>
<updated>2013-05-01T17:13:32+00:00</updated>
<author>
<name>John Keeping</name>
<email>john@keeping.me.uk</email>
</author>
<published>2013-05-01T08:25:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=3212d56ce528a86170f7809659f80a8769a5875f'/>
<id>3212d56ce528a86170f7809659f80a8769a5875f</id>
<content type='text'>
When using "git subtree push" to split out a subtree and push it to a
remote repository, we do not detect if the split command fails which
causes the LHS of the refspec to be empty, deleting the remote branch.

Fix this by pulling the result of the split command into a variable so
that we can die if the command fails.

Reported-by: Steffen Jaeckel &lt;steffen.jaeckel@stzedn.de&gt;
Signed-off-by: John Keeping &lt;john@keeping.me.uk&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When using "git subtree push" to split out a subtree and push it to a
remote repository, we do not detect if the split command fails which
causes the LHS of the refspec to be empty, deleting the remote branch.

Fix this by pulling the result of the split command into a variable so
that we can die if the command fails.

Reported-by: Steffen Jaeckel &lt;steffen.jaeckel@stzedn.de&gt;
Signed-off-by: John Keeping &lt;john@keeping.me.uk&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: fix spelling of accidentally</title>
<updated>2013-04-12T19:23:12+00:00</updated>
<author>
<name>Stefano Lattarini</name>
<email>stefano.lattarini@gmail.com</email>
</author>
<published>2013-04-11T22:36:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=d0008b3c667d3496cc1c27161fcbcd7e40aa9d02'/>
<id>d0008b3c667d3496cc1c27161fcbcd7e40aa9d02</id>
<content type='text'>
Noticed with Lucas De Marchi's codespell tool.

Signed-off-by: Stefano Lattarini &lt;stefano.lattarini@gmail.com&gt;
Signed-off-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Acked-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Noticed with Lucas De Marchi's codespell tool.

Signed-off-by: Stefano Lattarini &lt;stefano.lattarini@gmail.com&gt;
Signed-off-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Acked-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'dg/subtree-fixes'</title>
<updated>2013-02-14T18:28:26+00:00</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2013-02-14T18:28:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=260adc87b3d6c00650ba2dd493abd9a6603ca4f1'/>
<id>260adc87b3d6c00650ba2dd493abd9a6603ca4f1</id>
<content type='text'>
contrib/subtree updates, but here are only the ones that looked
ready.  The remainder of the patches will have another day.

* dg/subtree-fixes:
  contrib/subtree: make the manual directory if needed
  contrib/subtree: honor DESTDIR
  contrib/subtree: fix synopsis
  contrib/subtree: better error handling for 'subtree add'
  contrib/subtree: use %B for split subject/body
  contrib/subtree: remove test number comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
contrib/subtree updates, but here are only the ones that looked
ready.  The remainder of the patches will have another day.

* dg/subtree-fixes:
  contrib/subtree: make the manual directory if needed
  contrib/subtree: honor DESTDIR
  contrib/subtree: fix synopsis
  contrib/subtree: better error handling for 'subtree add'
  contrib/subtree: use %B for split subject/body
  contrib/subtree: remove test number comments
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: make the manual directory if needed</title>
<updated>2013-02-05T23:23:41+00:00</updated>
<author>
<name>Jesper L. Nielsen</name>
<email>lyager@gmail.com</email>
</author>
<published>2013-02-05T04:06:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=8165be064e51112f74ea06e48c2e09e13097335a'/>
<id>8165be064e51112f74ea06e48c2e09e13097335a</id>
<content type='text'>
Before install git-subtree documentation, make sure the manpage
directory exists.

Signed-off-by: Jesper L. Nielsen &lt;lyager@gmail.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before install git-subtree documentation, make sure the manpage
directory exists.

Signed-off-by: Jesper L. Nielsen &lt;lyager@gmail.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: honor DESTDIR</title>
<updated>2013-02-05T23:23:19+00:00</updated>
<author>
<name>Adam Tkac</name>
<email>atkac@redhat.com</email>
</author>
<published>2013-02-05T04:06:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=d86848228f46fad4c20bdf0bdcca124061dc56b2'/>
<id>d86848228f46fad4c20bdf0bdcca124061dc56b2</id>
<content type='text'>
Teach git-subtree's Makefile to honor DESTDIR.

Signed-off-by: Adam Tkac &lt;atkac@redhat.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Teach git-subtree's Makefile to honor DESTDIR.

Signed-off-by: Adam Tkac &lt;atkac@redhat.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: fix synopsis</title>
<updated>2013-02-05T23:23:05+00:00</updated>
<author>
<name>David A. Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2013-02-05T04:06:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=111dc0eea07d4843a9ed86e4069b899224a4489b'/>
<id>111dc0eea07d4843a9ed86e4069b899224a4489b</id>
<content type='text'>
Fix the documentation of add to show that a repository can be
specified along with a commit.

Suggested by Yann Dirson &lt;dirson@bertin.fr&gt;.

Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the documentation of add to show that a repository can be
specified along with a commit.

Suggested by Yann Dirson &lt;dirson@bertin.fr&gt;.

Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: better error handling for 'subtree add'</title>
<updated>2013-02-05T23:22:36+00:00</updated>
<author>
<name>David A. Greene</name>
<email>greened@obbligato.org</email>
</author>
<published>2013-02-05T04:06:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=10a49587fabde88c0afbc80a99d97fae91811f5f'/>
<id>10a49587fabde88c0afbc80a99d97fae91811f5f</id>
<content type='text'>
Check refspecs for validity before passing them on to other commands.
This lets us generate more helpful error messages.

Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Check refspecs for validity before passing them on to other commands.
This lets us generate more helpful error messages.

Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/subtree: use %B for split subject/body</title>
<updated>2013-02-05T23:22:12+00:00</updated>
<author>
<name>Techlive Zheng</name>
<email>techlivezheng@gmail.com</email>
</author>
<published>2013-02-05T04:06:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/git.git/commit/?id=a5b8e28e4eb5762c9da68b56efdf45d6c885bd56'/>
<id>a5b8e28e4eb5762c9da68b56efdf45d6c885bd56</id>
<content type='text'>
Use %B to format the commit message and body to avoid an extra newline
if a commit only has a subject line.

Signed-off-by: Techlive Zheng &lt;techlivezheng@gmail.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use %B to format the commit message and body to avoid an extra newline
if a commit only has a subject line.

Signed-off-by: Techlive Zheng &lt;techlivezheng@gmail.com&gt;
Signed-off-by: David A. Greene &lt;greened@obbligato.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
