<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="http://www.illusori.co.uk/xsl/rss.xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Sam's Blog &gt; Git</title>
    <link>http://www.illusori.co.uk/blog/categories/git/</link>
    <description>Sam's Blog, feed for category git</description>
    <language>en-gb</language>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <pubDate>Thu, 09 Sep 2010 15:32:00 GMT</pubDate>
    <lastBuildDate>Thu, 09 Sep 2010 15:32:00 GMT</lastBuildDate>
    <generator>build_site 1.0</generator>
    <webMaster>rss@illusori.co.uk</webMaster>

    <item>
      <title><![CDATA[All my published projects are now on GitHub]]></title>
      <link>http://www.illusori.co.uk/blog/2010/09/09/projects_on_github.html</link>
      <description><![CDATA[<p>Been a busy couple of weeks, but just thought I&#39;d mention in case any
of my previous contributors are interested: all my published projects
are now <a href="http://github.com/illusori">available on GitHub</a>.</p>
<p>Converting from CVS to git was surprisingly painless, although complicated
by the fact that each project repository had a public and private part, since
I manage each project&#39;s section of my website as part of the project, and
I doubt anyone else has much use for the mishmash of templates and config
files I use for that.</p>
<p>It was pretty easy add a regexp to prune out the bits I didn&#39;t want, convert
my unix login to my git user details, and shift everything up a directory
with the following commands:</p>
<div class="code">
<div class="codebody"><pre><div>git cvsimport -v -d /opt/cvs -S &#39;(bin/|site/)&#39; \
  -C git-Text-Matrix Text-Matrix \
  -A ~/git-cvsimport-authorconv.txt
cd git-Text-Matrix
git mv src/* .
rmdir src
git commit -m &#39;Shifted everything up a directory so repository root matches public section of old CVS project.&#39;</div></pre></div>
</div>

<p>I then did the same for the private directories and then placed the newly
created directories back under my old project dir as separate git repositories.</p>
<p>Things seem to test OK, although looks like I&#39;ve been a bit inconsistent
with whether I&#39;ve included generated files like MANIFEST and META.yml from
project to project.
I expect that&#39;ll sort itself out next time I work on any given project.</p>
<p>I really am kicking myself for sticking to CVS so long rather than giving
git a try, if anyone else is lingering: make the effort, it&#39;ll repay itself
within days.</p>
<p>Git honestly makes it <i>effortless</i> to do all those &quot;Best Practice&quot;
things you never quite do with CVS because it&#39;s too much hassle.</p>
<p>GitHub is just icing on the cake.</p><p><a href="http://www.illusori.co.uk/blog/2010/09/09/projects_on_github.html">Read more...</a></p>]]></description>
      <dc:creator>Sam Graham</dc:creator>
      <category>perl</category>
      <category>ironman</category>
      <category>git</category>
      <category>github</category>
      <pubDate>Thu, 09 Sep 2010 15:32:00 GMT</pubDate>
      <guid isPermaLink="true">http://www.illusori.co.uk/blog/2010/09/09/projects_on_github.html</guid>
    </item>
    <item>
      <title><![CDATA[App::podweaver and Pod::Weaver::PluginBundle::ReplaceBoilerplate]]></title>
      <link>http://www.illusori.co.uk/blog/2010/08/23/pod_weaver_plugin_replaceboilerplate.html</link>
      <description><![CDATA[<p>As mentioned in my previous article,
<a href="/blog/2010/08/16/still_alive.html">&quot;Still Alive and What I&#39;ve Been Up To&quot;</a>,
I&#39;ve been working on a way to let me use <a href="http://search.cpan.org/perldoc?Pod::Weaver">Pod::Weaver</a>
without being forced down the route of using <a href="http://search.cpan.org/perldoc?Dist::Zilla">Dist::Zilla</a>.</p>
<p>(The reason for not using <a href="http://search.cpan.org/perldoc?Dist::Zilla">Dist::Zilla</a> is that
<a href="/blog/2010/07/24/to_dist_zilla_or_not_to_dist_zilla.html">its work-flow
doesn&#39;t fit mine</a>.)</p>
<p>To that end I&#39;ve developed
<a href="http://github.com/illusori/Perl-App-podweaver">App::podweaver</a>,
<a href="http://github.com/illusori/Perl-Pod-Weaver-Role-SectionReplacer">Pod::Weaver::Role::SectionReplacer</a>, and
<a href="http://github.com/illusori/Perl-Pod-Weaver-PluginBundle-ReplaceBoilerplate">Pod::Weaver::PluginBundle::ReplaceBoilerplate</a>.</p>
<p>All the above are <a href="http://github.com/">GitHub</a> because they&#39;re not
yet ready for <a href="http://search.cpan.org/">CPAN</a> release, since they
lack important things like, oh, <i>tests that they don&#39;t go nuts and delete
all your code</i>.</p>
<p>That said they&#39;re at a stable enough stage that I&#39;ve used them to
weave their own documentation without trouble, and are potentially of
enough use and interest for me to put them up for early adopters to
take a look at, or for people to copy the guts to do their own thing with.</p>
<p>For more details on what does what, carry on reading below the cut.</p><p><a href="http://www.illusori.co.uk/blog/2010/08/23/pod_weaver_plugin_replaceboilerplate.html">Read more...</a></p>]]></description>
      <dc:creator>Sam Graham</dc:creator>
      <category>perl</category>
      <category>ironman</category>
      <category>git</category>
      <category>pod-weaver</category>
      <pubDate>Mon, 23 Aug 2010 13:16:00 GMT</pubDate>
      <guid isPermaLink="true">http://www.illusori.co.uk/blog/2010/08/23/pod_weaver_plugin_replaceboilerplate.html</guid>
    </item>
    <item>
      <title><![CDATA[Still Alive and What I&#39;ve Been Up To]]></title>
      <link>http://www.illusori.co.uk/blog/2010/08/16/still_alive.html</link>
      <description><![CDATA[<p>I&#39;ve failed <a href="http://ironman.enlightenedperl.org/">the Perl Iron
Man Challenge</a> again, but I&#39;m still alive, just busy.</p>
<p>I&#39;ve had a couple of articles semi-written for the past two weeks,
but they still very much works-in-progress, because they&#39;re about
projects that are still... very much in-progress.</p>
<p>So I thought I&#39;d post an interim report in the style of the &quot;What I&#39;m
Working On&quot; posts that crop up every so often.</p>
<p>One project is getting <a href="http://search.cpan.org/perldoc?Pod::Weaver">Pod::Weaver</a> to do what I want,
as mentioned in my previous article,
<a href="/blog/2010/07/24/to_dist_zilla_or_not_to_dist_zilla.html">&quot;To
Dist::Zilla, or not to Dist::Zilla?&quot;</a>, this has involved using
<a href="http://search.cpan.org/perldoc?Moose">Moose</a> for the first time, <a href="http://search.cpan.org/perldoc?Pod::Weaver">Pod::Weaver</a> for
the first time, <a href="http://search.cpan.org/perldoc?Pod::Elemental">Pod::Elemental</a> for the first time,
<a href="http://search.cpan.org/perldoc?Config::MVP">Config::MVP</a> for the first time, and Git for the first time.</p><p><a href="http://www.illusori.co.uk/blog/2010/08/16/still_alive.html">Read more...</a></p>]]></description>
      <dc:creator>Sam Graham</dc:creator>
      <category>perl</category>
      <category>ironman</category>
      <category>moose</category>
      <category>git</category>
      <category>pod-weaver</category>
      <category>module-authoring</category>
      <category>strawberry-perl</category>
      <category>perlbrew</category>
      <category>template-benchmark</category>
      <category>job-hunting</category>
      <pubDate>Mon, 16 Aug 2010 11:03:00 GMT</pubDate>
      <guid isPermaLink="true">http://www.illusori.co.uk/blog/2010/08/16/still_alive.html</guid>
    </item>

  </channel>
</rss>
