<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>open-nandra &#187; git</title>
	<atom:link href="http://open-nandra.com/category/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://open-nandra.com</link>
	<description>open source</description>
	<lastBuildDate>Sun, 01 Jan 2012 13:10:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to display percentage of changes in directories with git</title>
		<link>http://open-nandra.com/2010/02/how-to-display-percentage-of-changes-in-directory-with-git/</link>
		<comments>http://open-nandra.com/2010/02/how-to-display-percentage-of-changes-in-directory-with-git/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 11:59:14 +0000</pubDate>
		<dc:creator>Marek Belisko</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[HOW-TOs]]></category>

		<guid isPermaLink="false">http://open-nandra.com/?p=331</guid>
		<description><![CDATA[I was always curious how Linus when release new -rc also add nice percentage directory changes output. Solution is very easy when you know git (and read manuals of course). You can display per directory changes with following command (will use for kernel): git diff --dirstat v2.6.33-rc8..HEAD Command make dirstat between -rc8 version and actual [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://open-nandra.com/wp-content/uploads/git-logo1.jpg"><img class="alignleft size-full wp-image-337" title="git-logo" src="http://open-nandra.com/wp-content/uploads/git-logo1.jpg" alt="git-logo" width="35" height="73" /></a><br />
I was always curious how Linus when release new -rc also add nice percentage directory changes output.</p>
<p>Solution is very easy when you know git (and read manuals of course).</p>
<p><span id="more-331"></span><br />
You can display per directory changes with following command (will use for kernel):</p>
<pre>git diff --dirstat v2.6.33-rc8..HEAD</pre>
<p>Command make dirstat between -rc8 version and actual version.</p>
<p>output:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">4.4% arch/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">7.8% drivers/firewire/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">8.4% drivers/md/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">4.4% drivers/net/wireless/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">13.8% drivers/net/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">10.5% drivers/usb/core/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">3.6% drivers/usb/host/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">3.0% drivers/usb/serial/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">3.9% drivers/usb/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">4.6% drivers/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">8.1% fs/sysfs/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">11.4% kernel/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">3.3% net/ipv4/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 103px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">4.6% net/</div>
<p>4.4% arch/</p>
<p>7.8% drivers/firewire/</p>
<p>8.4% drivers/md/</p>
<p>4.4% drivers/net/wireless/</p>
<p>13.8% drivers/net/</p>
<p>10.5% drivers/usb/core/</p>
<p>3.6% drivers/usb/host/</p>
<p>3.0% drivers/usb/serial/</p>
<p>3.9% drivers/usb/</p>
<p>4.6% drivers/</p>
<p>8.1% fs/sysfs/</p>
<p>11.4% kernel/</p>
<p>3.3% net/ipv4/</p>
<p>4.6% net/</p>
<div>Easy <img src='http://open-nandra.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Good luck,</div>
<div>Marek</div>
]]></content:encoded>
			<wfw:commentRss>http://open-nandra.com/2010/02/how-to-display-percentage-of-changes-in-directory-with-git/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

