<?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>Wed, 18 Jan 2012 21:44:54 +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>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[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:px;">
				<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fseanbehan.com%2Fprogramming%2Fvery-basic-git-workflow%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe>
				</div><div class="really_simple_share_twitter" style="width:px;">
					<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Very Basic Git Workflow" data-url="http://seanbehan.com/programming/very-basic-git-workflow/" 
						data-via="" ></a> 
				</div></div>
		<div style="clear:both;"></div><p>Very, very basic git workflow</p>
<pre class="wp-code-highlight prettyprint">
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[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:px;">
				<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fseanbehan.com%2Fgit%2Fworking-with-branches-in-git%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe>
				</div><div class="really_simple_share_twitter" style="width:px;">
					<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Working with Branches in Git" data-url="http://seanbehan.com/git/working-with-branches-in-git/" 
						data-via="" ></a> 
				</div></div>
		<div style="clear:both;"></div><p>Show all the branches</p>
<pre class="wp-code-highlight prettyprint">
git branch
</pre>
<p>Create a new branch</p>
<pre class="wp-code-highlight prettyprint">
git branch my_experimental_feature
</pre>
<p>Use that branch</p>
<pre class="wp-code-highlight prettyprint">
git checkout my_experimental_feature
</pre>
<p>Pushing the new branch to a remote server</p>
<pre class="wp-code-highlight prettyprint">
git push origin my_experimental_feature
</pre>
<p>Pulling that branch down on another machine</p>
<pre class="wp-code-highlight prettyprint">
git pull origin my_experimental_feature
</pre>
<p>Listing all branches on other machine</p>
<pre class="wp-code-highlight prettyprint">
git branch -a
</pre>
<p>Updating other machine</p>
<pre class="wp-code-highlight prettyprint">
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>

