<?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>databasically // Kansas City Small Business IT &#38;&#38; Ruby on Rails Programming &#187; git</title>
	<atom:link href="http://databasically.com/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://databasically.com</link>
	<description>Kansas City Small Business IT</description>
	<lastBuildDate>Tue, 20 Jul 2010 21:35:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Capistrano deploy error &quot;fatal: unable to create &#039;.git/index.lock&#039;: File exists&quot;</title>
		<link>http://databasically.com/2009/10/21/capistrano-deploy-error-fatal-unable-to-create-gitindex-lock-file-exists/</link>
		<comments>http://databasically.com/2009/10/21/capistrano-deploy-error-fatal-unable-to-create-gitindex-lock-file-exists/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 15:54:35 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Version Control]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=132</guid>
		<description><![CDATA[This isn&#8217;t specific to capistrano, necessarily, but I ran into it deploying.
fatal: unable to create '.git/index.lock': File exists

The fix:
Got to your project&#8217;s shared/cached-copy/.git folder and delete index.lock .  It shouldn&#8217;t ever get hung up like that, but it happened to me.
]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t specific to capistrano, necessarily, but I ran into it deploying.</p>
<p><code>fatal: unable to create '.git/index.lock': File exists</code><br />
<span id="more-132"></span><br />
The fix:<br />
Got to your project&#8217;s shared/cached-copy/.git folder and delete index.lock .  It shouldn&#8217;t ever get hung up like that, but it happened to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/10/21/capistrano-deploy-error-fatal-unable-to-create-gitindex-lock-file-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git: You asked me to pull without telling me which branch &#8230;</title>
		<link>http://databasically.com/2009/07/01/git-you-asked-me-to-pull-without-telling-me-which-branch/</link>
		<comments>http://databasically.com/2009/07/01/git-you-asked-me-to-pull-without-telling-me-which-branch/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 02:17:44 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Version Control]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=129</guid>
		<description><![CDATA[Received this error when trying to pull from a remote origin:
You asked me to pull without telling me which branch you
want to merge with, and 'branch.master.merge' in
your configuration file does not tell me either.

To fix, I added this to .git/config:

]]></description>
			<content:encoded><![CDATA[<p>Received this error when trying to pull from a remote origin:</p>
<pre>You asked me to pull without telling me which branch you
want to merge with, and 'branch.master.merge' in
your configuration file does not tell me either.</pre>
<p><span id="more-129"></span><br />
To fix, I added this to .git/config:<br />
<script src="http://gist.github.com/190290.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/07/01/git-you-asked-me-to-pull-without-telling-me-which-branch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git: failed to push some refs</title>
		<link>http://databasically.com/2009/06/26/git-failed-to-push-some-refs/</link>
		<comments>http://databasically.com/2009/06/26/git-failed-to-push-some-refs/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 19:23:25 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Version Control]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=126</guid>
		<description><![CDATA[I&#8217;m really digging git, but its error messages are less than helpful at times.
git push origin master
error: failed to push some refs to origin
Most likely, there are changes in the remote repo that you need to pull first:
git pull origin master
Resolve any conflicts, then you can push to the remote git repo.
I&#8217;m not sure why [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really digging git, but its error messages are less than helpful at times.</p>
<pre class="ruby" name="code">git push origin master
error: failed to push some refs to origin</pre>
<p>Most likely, there are changes in the remote repo that you need to pull first:</p>
<pre class="ruby" name="code">git pull origin master</pre>
<p>Resolve any conflicts, then you can push to the remote git repo.</p>
<p>I&#8217;m not sure why &#8220;failed to push some refs&#8221; couldn&#8217;t include &#8220;(do you need to pull?)&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/06/26/git-failed-to-push-some-refs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
