<?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>Wetware &#187; git</title>
	<atom:link href="http://www.wetware.co.nz/blog/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wetware.co.nz/blog</link>
	<description>Getting computers to do stuff so we don&#039;t have too</description>
	<lastBuildDate>Tue, 27 Jul 2010 03:03:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>what changes did I just pull from git?</title>
		<link>http://www.wetware.co.nz/blog/2010/05/what-changes-did-i-just-pull-from-git/</link>
		<comments>http://www.wetware.co.nz/blog/2010/05/what-changes-did-i-just-pull-from-git/#comments</comments>
		<pubDate>Fri, 14 May 2010 04:12:35 +0000</pubDate>
		<dc:creator>Jordan Carter</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=711</guid>
		<description><![CDATA[Ever wanted to see what changes you just pulled from github? This little command will show you the changes for the last commit, if the pull resulted in more commits being pulled then add a couple more &#8216;^&#8217;s to HEAD^ git diff HEAD^ HEAD]]></description>
		<wfw:commentRss>http://www.wetware.co.nz/blog/2010/05/what-changes-did-i-just-pull-from-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git cherry-pick</title>
		<link>http://www.wetware.co.nz/blog/2010/05/git-cherry-pick/</link>
		<comments>http://www.wetware.co.nz/blog/2010/05/git-cherry-pick/#comments</comments>
		<pubDate>Fri, 14 May 2010 01:15:24 +0000</pubDate>
		<dc:creator>Jordan Carter</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=708</guid>
		<description><![CDATA[cherry-pick is a useful Git command, especially if you are working in an Agile team. We used it for the first time today on our project. Team member A lets call him &#8220;James&#8221; made a feature and put it onto master. Team member B lets call him &#8220;Jordan&#8221; later refactered some code from &#8220;James&#8221;&#8216;s feature.  [...]]]></description>
		<wfw:commentRss>http://www.wetware.co.nz/blog/2010/05/git-cherry-pick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git /usr/local/lib/liblber &amp; /usr/local/lib/libldap_r no version information available error</title>
		<link>http://www.wetware.co.nz/blog/2010/04/git-usrlocallibliblber-usrlocalliblibldap_r-no-version-information-available-error/</link>
		<comments>http://www.wetware.co.nz/blog/2010/04/git-usrlocallibliblber-usrlocalliblibldap_r-no-version-information-available-error/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 22:28:47 +0000</pubDate>
		<dc:creator>Jordan Carter</dc:creator>
				<category><![CDATA[Server Config]]></category>
		<category><![CDATA[Ubuntu Tricks]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=679</guid>
		<description><![CDATA[I just updated my system today and rebooted (I like to reboot once a couple weeks&#8230;) and git started freeking out on me. I tried to git add ap [tab tab] but &#8220;git: /usr/local/lib/liblber-2.4.so.2: no version information available (required by /usr/lib/libcurl-gnutls.so.4)&#8221; would pop up before the auto-complete and mess everything up. I could continue without [...]]]></description>
		<wfw:commentRss>http://www.wetware.co.nz/blog/2010/04/git-usrlocallibliblber-usrlocalliblibldap_r-no-version-information-available-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t Access Github behind proxy or Firewall</title>
		<link>http://www.wetware.co.nz/blog/2010/03/cant-access-github-behind-proxy-or-firewall/</link>
		<comments>http://www.wetware.co.nz/blog/2010/03/cant-access-github-behind-proxy-or-firewall/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 09:45:34 +0000</pubDate>
		<dc:creator>Jordan Carter</dc:creator>
				<category><![CDATA[Server Config]]></category>
		<category><![CDATA[Ubuntu Tricks]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[corkscrew]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github.com]]></category>
		<category><![CDATA[http proxy]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=663</guid>
		<description><![CDATA[Use corkscrew to get through the firewall. You will have to install it from source. website: http://www.agroman.net/corkscrew/ Now edit your ~/.ssh/config file, create it if you haven&#8217;t got one. &#62; cat ~/.ssh/config Host gitproxy User git Hostname ssh.github.com Port 443 ProxyCommand /usr/local/bin/corkscrew proxy.example.com 3128 %h %p IdentityFile /home/jordan/.ssh/id_rsa Now use this proxy when cloning git [...]]]></description>
		<wfw:commentRss>http://www.wetware.co.nz/blog/2010/03/cant-access-github-behind-proxy-or-firewall/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu for the Win again &#8211; Meld Git Diff GUI</title>
		<link>http://www.wetware.co.nz/blog/2009/08/ubuntu-for-the-win-again-meld-git-diff-gui/</link>
		<comments>http://www.wetware.co.nz/blog/2009/08/ubuntu-for-the-win-again-meld-git-diff-gui/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:57:02 +0000</pubDate>
		<dc:creator>Jordan Carter</dc:creator>
				<category><![CDATA[Ubuntu Tricks]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Meld]]></category>

		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=462</guid>
		<description><![CDATA[If you want to look at git diff &#8216;s through a gui on a linux machine then Meld fits the requirements nicely. I have only just found out about it but from first impressions it is rather good. Ubuntu 9.04 can just sudo apt-get install meld Will keep you posted.]]></description>
		<wfw:commentRss>http://www.wetware.co.nz/blog/2009/08/ubuntu-for-the-win-again-meld-git-diff-gui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
