<?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>Sean&#039;s Blog &#187; branch</title>
	<atom:link href="http://seanbehan.com/tag/branch/feed/" rel="self" type="application/rss+xml" />
	<link>http://seanbehan.com</link>
	<description>Web Programming, Ruby on Rails, Wordpress, PHP from Burlington, Vermont</description>
	<lastBuildDate>Tue, 31 Aug 2010 14:38:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Very Basic Git Workflow</title>
		<link>http://seanbehan.com/programming/very-basic-git-workflow/</link>
		<comments>http://seanbehan.com/programming/very-basic-git-workflow/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 21:57:52 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[master]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=899</guid>
		<description><![CDATA[Very, very basic git workflow git pull git branch dev_branch git checkout dev_branch #make some changes git checkout master git merge dev_branch git branch -d branch_to_delete git push]]></description>
			<content:encoded><![CDATA[<p>Very, very basic git workflow</p>
<pre>
git pull
git branch dev_branch
git checkout dev_branch
#make some changes
git checkout master
git merge dev_branch
git branch -d branch_to_delete
git push
</pre>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/programming/very-basic-git-workflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Branches in Git</title>
		<link>http://seanbehan.com/git/working-with-branches-in-git/</link>
		<comments>http://seanbehan.com/git/working-with-branches-in-git/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 21:43:14 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[source control]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=591</guid>
		<description><![CDATA[Show all the branches git branch Create a new branch git branch my_experimental_feature Use that branch git checkout my_experimental_feature Pushing the new branch to a remote server git push origin my_experimental_feature Pulling that branch down on another machine git pull origin my_experimental_feature Listing all branches on other machine git branch -a Updating other machine git [...]]]></description>
			<content:encoded><![CDATA[<p>Show all the branches</p>
<pre>
git branch
</pre>
<p>Create a new branch</p>
<pre>
git branch my_experimental_feature
</pre>
<p>Use that branch</p>
<pre>
git checkout my_experimental_feature
</pre>
<p>Pushing the new branch to a remote server</p>
<pre>
git push origin my_experimental_feature
</pre>
<p>Pulling that branch down on another machine</p>
<pre>
git pull origin my_experimental_feature
</pre>
<p>Listing all branches on other machine</p>
<pre>
git branch -a
</pre>
<p>Updating other machine</p>
<pre>
git pull origin my_experimental_feature
</pre>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/git/working-with-branches-in-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
