<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/git.git/git-cvsimport.perl, branch v1.0rc1</title>
<subtitle>Git
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.0rc1</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.0rc1'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/'/>
<updated>2005-11-02T00:57:53Z</updated>
<entry>
<title>cvsimport: cvsps should be quiet too</title>
<updated>2005-11-02T00:57:53Z</updated>
<author>
<name>Martin Langhoff</name>
<email>martin@catalyst.net.nz</email>
</author>
<published>2005-11-02T00:53:23Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=9acb552d984f172f00bbb79888f4bdeb0032332f'/>
<id>urn:sha1:9acb552d984f172f00bbb79888f4bdeb0032332f</id>
<content type='text'>
Tell cvsps to be quiet, unless we've been told to be verbose.

Signed-off-by: Martin Langhoff &lt;martin@catalyst.net.nz&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cvsimport: introduce -P &lt;cvsps-output-file&gt; option</title>
<updated>2005-11-02T00:57:38Z</updated>
<author>
<name>Martin Langhoff</name>
<email>martin@catalyst.net.nz</email>
</author>
<published>2005-11-02T00:48:47Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=211dcac6430cdf77fcf2a968ffaf9313b5c059b0'/>
<id>urn:sha1:211dcac6430cdf77fcf2a968ffaf9313b5c059b0</id>
<content type='text'>
-P:: &lt;cvsps-output-file&gt;
       Instead of calling cvsps, read the provided cvsps output file. Useful
       for debugging or when cvsps is being handled outside cvsimport.

Signed-off-by: Martin Langhoff &lt;martin@catalyst.net.nz&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cvsimport: catch error condition where cvs host disappears</title>
<updated>2005-11-02T00:57:14Z</updated>
<author>
<name>Martin Langhoff</name>
<email>martin@catalyst.net.nz</email>
</author>
<published>2005-11-02T00:48:22Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=d44e8cf0298a794648271cbff2f74a0063a672b3'/>
<id>urn:sha1:d44e8cf0298a794648271cbff2f74a0063a672b3</id>
<content type='text'>
Add error handling for cases where the cvs server goes away unexpectedly.
While I don't know why the cvs server is so erratic, we should definitely
exit here before committing bogus files.

Signed-off-by: Martin Langhoff &lt;martin@catalyst.net.nz&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Fix cvsimport warning when called without --no-cvs-direct</title>
<updated>2005-10-18T18:35:16Z</updated>
<author>
<name>Johannes Schindelin</name>
<email>Johannes.Schindelin@gmx.de</email>
</author>
<published>2005-10-18T18:35:16Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=e175768954816b00bbbba131ec1c411d2cd66582'/>
<id>urn:sha1:e175768954816b00bbbba131ec1c411d2cd66582</id>
<content type='text'>
Perl was warning that $opt_p was undefined in that case.

Signed-off-by: Johannes Schindelin &lt;Johannes.Schindelin@gmx.de&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Merge branch 'svn' of http://netz.smurf.noris.de/git/git</title>
<updated>2005-10-16T18:55:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-10-16T18:55:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=29504118f8528f658fd0bfc02d8d78d4c01dc2cc'/>
<id>urn:sha1:29504118f8528f658fd0bfc02d8d78d4c01dc2cc</id>
<content type='text'>
[jc: I have my pre-commit hook enabled to catch trailing whitespaces,
 and fixed them up while merging.]

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>[PATCH] cvsimport: don't pass --cvs-direct if user options contradict us</title>
<updated>2005-10-12T04:57:04Z</updated>
<author>
<name>Martin Langhoff</name>
<email>martin@catalyst.net.nz</email>
</author>
<published>2005-10-12T04:57:04Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=df73e9c62a9f0e6cdf20f095b99abf32c8e65c75'/>
<id>urn:sha1:df73e9c62a9f0e6cdf20f095b99abf32c8e65c75</id>
<content type='text'>
Detecting if the user passed --no-cvs-direct and don't force the mode.
It allows us to support all the protocol that the standard cvs client
supports at the snail speed you should expect.

This only affects the rlog reading stage.

Signed-off-by: Martin Langhoff &lt;martin@catalyst.net.nz&gt;
</content>
</entry>
<entry>
<title>cvsimport: report merge parents</title>
<updated>2005-10-10T09:15:09Z</updated>
<author>
<name>Matthias Urlichs</name>
<email>smurf@smurf.noris.de</email>
</author>
<published>2005-10-10T09:15:09Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=89764f5d8b0ca8600e3a200e9f863c3c7a3ff5e8'/>
<id>urn:sha1:89764f5d8b0ca8600e3a200e9f863c3c7a3ff5e8</id>
<content type='text'>
Matching and reporting merge parents happens in a subprocess.
Re-open stdout before redirecting stdout to the pipe, so that printing
verbose messages doesn't go to the wrong place.

Signed-Off-By: Matthias Urlichs &lt;smurf@smurf.noris.de&gt;
</content>
</entry>
<entry>
<title>Pass CVSps generated A U Thor &lt;author@domain.xz&gt; intact.</title>
<updated>2005-10-02T06:15:23Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-09-30T08:48:57Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=94c23343dce0f556392fe8bbbba1b38cd37da481'/>
<id>urn:sha1:94c23343dce0f556392fe8bbbba1b38cd37da481</id>
<content type='text'>
Alexey Nezhdanov updated CVSps to generate author-name and
author-email information in its output.

If the input looks like it has that already properly formatted,
use that without our own munging.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Big tool rename.</title>
<updated>2005-09-08T00:45:20Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-09-08T00:26:23Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=215a7ad1ef790467a4cd3f0dcffbd6e5f04c38f7'/>
<id>urn:sha1:215a7ad1ef790467a4cd3f0dcffbd6e5f04c38f7</id>
<content type='text'>
As promised, this is the "big tool rename" patch.  The primary differences
since 0.99.6 are:

  (1) git-*-script are no more.  The commands installed do not
      have any such suffix so users do not have to remember if
      something is implemented as a shell script or not.

  (2) Many command names with 'cache' in them are renamed with
      'index' if that is what they mean.

There are backward compatibility symblic links so that you and
Porcelains can keep using the old names, but the backward
compatibility support  is expected to be removed in the near
future.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
