<?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>Tech Notes &#187; Git</title>
	<atom:link href="http://www.ryannitz.org/tech-notes/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryannitz.org/tech-notes</link>
	<description>Miscellaneous technology examples and notes</description>
	<lastBuildDate>Sun, 03 Apr 2011 16:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
  <link>http://www.ryannitz.org/tech-notes</link>
  <url>http://ryan-nitz/favicon.ico</url>
  <title>Tech Notes</title>
</image>
		<item>
		<title>Git Ignore Untracked Files</title>
		<link>http://www.ryannitz.org/tech-notes/2009/08/04/git-ignore-untracked-files/</link>
		<comments>http://www.ryannitz.org/tech-notes/2009/08/04/git-ignore-untracked-files/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 00:47:24 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Config]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://ryan-nitz.com/tech-notes/?p=195</guid>
		<description><![CDATA[If you do not want to see Git messages about build directories or miscellaneous scratch files then add them to your .gitignore file. To do so, create the file, add the directories/files and then add the file to git. E.g. touch .gitignore Edit the file to suit your needs and then add/commit. git add .gitignore [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-145" title="git-logo" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2009/02/git-logo.png" alt="git-logo" width="73" height="28" /></p>
<p>If you do not want to see Git messages about build directories or miscellaneous scratch files then add them to your .gitignore file. To do so, create the file, add the directories/files and then add the file to git.</p>
<p>E.g.</p>
<pre>touch .gitignore</pre>
<p>Edit the file to suit your needs and then add/commit.</p>
<pre>git add .gitignore
git commit .gitignore
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2009/08/04/git-ignore-untracked-files/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Push a Branch to Git</title>
		<link>http://www.ryannitz.org/tech-notes/2009/07/14/push-a-branch-to-git/</link>
		<comments>http://www.ryannitz.org/tech-notes/2009/07/14/push-a-branch-to-git/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 01:41:02 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://ryan-nitz.com/tech-notes/?p=183</guid>
		<description><![CDATA[I found this example of how to push a branch to Git in the GitHub documentation. git push &#60;remote_repository_name&#62; &#60;branch_name&#62; E.g. git push origin master Execute this from the base of your local repository. This pushes your local commits to the TOT.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-145" title="git-logo" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2009/02/git-logo.png" alt="git-logo" width="73" height="28" /></p>
<p>I found this example of how to push a branch to Git in the <a href="http://github.com/guides/push-a-branch-to-github" target="_blank">GitHub documentation</a>.</p>
<pre><code>git push &lt;remote_repository_name&gt; &lt;branch_name&gt;</code></pre>
<p>E.g.</p>
<pre><code>git push origin master</code></pre>
<p>Execute this from the base of your local repository. This pushes your local commits to the TOT.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2009/07/14/push-a-branch-to-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Git Links</title>
		<link>http://www.ryannitz.org/tech-notes/2009/02/12/useful-git-links/</link>
		<comments>http://www.ryannitz.org/tech-notes/2009/02/12/useful-git-links/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 01:25:25 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://leisuremech.com/?p=144</guid>
		<description><![CDATA[Switching to Git has been an incremental learning experience. Below, are some useful links for learning about Git: Setting up your Git repositories for open source projects at GitHub Git &#8211; SVN Crash Course Gittuorial &#8211; Man Page If you know of other useful introductory Git links, add them in the comments and we will [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-145" title="git-logo" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2009/02/git-logo.png" alt="git-logo" width="73" height="28" /></p>
<p>Switching to <a href="http://en.wikipedia.org/wiki/Git_(software)" target="_blank">Git</a> has been an incremental learning experience. Below, are some useful links for learning about Git:</p>
<ul>
<li><a href="http://blog.insoshi.com/2008/10/14/setting-up-your-git-repositories-for-open-source-projects-at-github/" target="_blank">Setting up your Git repositories for open source projects at GitHub</a></li>
</ul>
<ul>
<li><a href=" http://git.or.cz/course/svn.html" target="_blank">Git &#8211; SVN Crash Course</a></li>
</ul>
<ul>
<li><a href=" http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html" target="_blank">Gittuorial &#8211; Man Page</a></li>
</ul>
<p>If you know of other useful introductory Git links, add them in the comments and we will update the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2009/02/12/useful-git-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

