<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A web-focused Git workflow</title>
	<atom:link href="http://joemaller.com/2008/11/25/a-web-focused-git-workflow/feed/" rel="self" type="application/rss+xml" />
	<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/</link>
	<description>.com</description>
	<lastBuildDate>Sun, 14 Mar 2010 01:17:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: J Smith</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-169771</link>
		<dc:creator>J Smith</dc:creator>
		<pubDate>Wed, 24 Feb 2010 23:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-169771</guid>
		<description>This page doesn&#039;t seem to print very well.  I have only tried in Firefox and Opera.  I think it is down to the following in style.css:

#main{
...
   overflow: hidden;
...
}

It seems to print okay when I disable this using Firebug or Dragonfly.</description>
		<content:encoded><![CDATA[<p>This page doesn&#8217;t seem to print very well.  I have only tried in Firefox and Opera.  I think it is down to the following in style.css:</p>
<p>#main{<br />
&#8230;<br />
   overflow: hidden;<br />
&#8230;<br />
}</p>
<p>It seems to print okay when I disable this using Firebug or Dragonfly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fedesilva</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-169703</link>
		<dc:creator>fedesilva</dc:creator>
		<pubDate>Sun, 21 Feb 2010 23:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-169703</guid>
		<description>Glad to be of help :)

I find that pushing to a specific branch lets me use Hub to share with other devs and the design team without triggering deploys or setting yet another bare repo.
I will incorporate triggering a deploy to production soon.

Your trick to resolve conflicts in the Prime repo through a brach is neat, will be using that, too.</description>
		<content:encoded><![CDATA[<p>Glad to be of help :)</p>
<p>I find that pushing to a specific branch lets me use Hub to share with other devs and the design team without triggering deploys or setting yet another bare repo.<br />
I will incorporate triggering a deploy to production soon.</p>
<p>Your trick to resolve conflicts in the Prime repo through a brach is neat, will be using that, too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-169695</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 21 Feb 2010 15:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-169695</guid>
		<description>Somewhat embarrassingly, I had completely missed the various hook parameters until reading your comment, I&#039;m definitely going to be experimenting with these. Thanks!

For reference, &lt;a href=&quot;http://www.kernel.org/pub/software/scm/git/docs/githooks.html#post-update&quot; rel=&quot;nofollow&quot;&gt;post-update hook documentation&lt;/a&gt;: &quot;[Post-update] takes a variable number of parameters, each of which is the name of ref that was actually updated.&quot;</description>
		<content:encoded><![CDATA[<p>Somewhat embarrassingly, I had completely missed the various hook parameters until reading your comment, I&#8217;m definitely going to be experimenting with these. Thanks!</p>
<p>For reference, <a href="http://www.kernel.org/pub/software/scm/git/docs/githooks.html#post-update" rel="nofollow">post-update hook documentation</a>: &#8220;[Post-update] takes a variable number of parameters, each of which is the name of ref that was actually updated.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fedesilva</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-169688</link>
		<dc:creator>fedesilva</dc:creator>
		<pubDate>Sun, 21 Feb 2010 10:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-169688</guid>
		<description>Nice post. 
I do something similar for work in progress previews. 
The difference is I push to a preview branch and the post update hook does:

&lt;code&gt;

echo &quot;PostUpdate Hook&quot;
echo $1 $2 $3 

case &quot; $* &quot; in
    *&#039; refs/heads/preview &#039;*)
    /home/client/bin/update-repo.sh
    ;;
esac

exec git-update-server-info

&lt;/code&gt;

The update-repo.sh is similar to your hook&#039;s body.</description>
		<content:encoded><![CDATA[<p>Nice post.<br />
I do something similar for work in progress previews.<br />
The difference is I push to a preview branch and the post update hook does:</p>
<p><code></p>
<p>echo "PostUpdate Hook"<br />
echo $1 $2 $3 </p>
<p>case " $* " in<br />
    *' refs/heads/preview '*)<br />
    /home/client/bin/update-repo.sh<br />
    ;;<br />
esac</p>
<p>exec git-update-server-info</p>
<p></code></p>
<p>The update-repo.sh is similar to your hook&#8217;s body.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Volker Grabsch</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-169659</link>
		<dc:creator>Volker Grabsch</dc:creator>
		<pubDate>Sat, 20 Feb 2010 03:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-169659</guid>
		<description>If &quot;git push&quot; would work properly for non-bare destinations (as it is the case with e.g. Mercurial and also Darcs), the design could be simplified by merging &quot;hub&quot; and &quot;prime&quot;.</description>
		<content:encoded><![CDATA[<p>If &#8220;git push&#8221; would work properly for non-bare destinations (as it is the case with e.g. Mercurial and also Darcs), the design could be simplified by merging &#8220;hub&#8221; and &#8220;prime&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ibrahim</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-168078</link>
		<dc:creator>Ibrahim</dc:creator>
		<pubDate>Wed, 23 Dec 2009 07:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-168078</guid>
		<description>Does this script work if the Prime repository is owned by a different user than the one that owns Hub?</description>
		<content:encoded><![CDATA[<p>Does this script work if the Prime repository is owned by a different user than the one that owns Hub?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-167161</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 30 Nov 2009 16:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-167161</guid>
		<description>The watch command can keep track of directory changes, or else just use cron to add and commit the directory regularly, if there are no changes there won&#039;t be a commit.</description>
		<content:encoded><![CDATA[<p>The watch command can keep track of directory changes, or else just use cron to add and commit the directory regularly, if there are no changes there won&#8217;t be a commit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hays Clark</title>
		<link>http://joemaller.com/2008/11/25/a-web-focused-git-workflow/#comment-166862</link>
		<dc:creator>Hays Clark</dc:creator>
		<pubDate>Thu, 26 Nov 2009 11:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=990#comment-166862</guid>
		<description>Is there any magical way to make any change to files auto-commit?  I have some artist that use FTP to upload content to the site and I was curious if there was some nifty way to have GIT auto-commit on any change in Prime.</description>
		<content:encoded><![CDATA[<p>Is there any magical way to make any change to files auto-commit?  I have some artist that use FTP to upload content to the site and I was curious if there was some nifty way to have GIT auto-commit on any change in Prime.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
