<?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>Aris Royo&#039;s Blog &#187; open source</title>
	<atom:link href="http://arisroyo.com/tag/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://arisroyo.com</link>
	<description>Advocating and contributing to ideals of free software.</description>
	<lastBuildDate>Sat, 28 Jan 2012 06:15:26 +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>My Daily Git</title>
		<link>http://arisroyo.com/2011/06/09/my-daily-git/</link>
		<comments>http://arisroyo.com/2011/06/09/my-daily-git/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 23:00:30 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Version Control System]]></category>

		<guid isPermaLink="false">http://blog.arisroyo.com/?p=493</guid>
		<description><![CDATA[I finally complete learning how to Git and after a few days of reading and testing I made some list of Git command that will help from a daily programming routine. $git  init – Create empty git project. $git status – Check the status of a current branch. $git log – To check the branch [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-635" title="git-logo" src="http://arisroyo.com/wp-content/uploads/2011/06/git-logo.png" alt="" width="188" height="97" />I finally complete learning how to Git and after a few days of reading and testing I made some list of Git command that will help from a daily programming routine.</p>
<p><strong>$git  init </strong>– Create empty git project.</p>
<p><strong>$git status</strong> – Check the status of a current branch.</p>
<p><strong>$git log </strong>– To check the branch commit log and<br />
information.</p>
<p><strong>$git add &lt;file name&gt;</strong> &#8211; To add file/change to Git<br />
repository.</p>
<p><strong>$git commit –m “Comment Text”</strong> – To commit changes<br />
and put comment.</p>
<p><strong>$git branch &lt;branch name&gt;</strong> &#8211; Create a new branch name<br />
from the current branch.</p>
<p><strong>$git tag &lt;tag name&gt; </strong>- Create a tag of a branch of<br />
the current state.</p>
<p><strong>$git tag  and  $git  branch</strong> – To list down tag and<br />
branch name</p>
<p><strong>$git checkout &lt;branch name&gt; </strong>- To switch to different<br />
branch</p>
<p><strong>$git checkout –b &lt;branch name&gt; </strong>- Create a new branch<br />
name with automatic check out.</p>
<p><strong>$git diff &lt;branch name 1&gt; &lt;branch name 2&gt; </strong> &#8211; To<br />
check the difference within two branch</p>
<p><strong>$git branch –d  &lt;branch name&gt;</strong> &#8211; Delete the specific<br />
branchname.</p>
<p><strong>$git merge –no-ff &lt;branch name&gt; </strong>-Recursively merges<br />
the current branch.</p>
<p><strong>$git stash </strong>– To save the current  changes in a work<br />
space.</p>
<p><strong>$git stash apply</strong> – To apply the stash in the current<br />
branch state.</p>
<p><strong>$git stash list</strong> – get the list of stash updates.</p>
<p><strong>$git stash clear </strong>– Clear stash updates.</p>
<p><strong>$git pull &lt;Path name&gt; </strong>- Full repository  and to<br />
update all branch</p>
<p><strong>$git clone &lt;Origin repository path&gt; &lt;Your repository<br />
path&gt;.</strong> &#8211; Clone / Copy repository.</p>
<p><strong>$git pull &lt;Orign repository parth&gt; &lt;branch name&gt;</strong> -<br />
Pull specific branch name from origin.</p>
<p><strong>$git push origin </strong>– Push update of the current branch<br />
to origin &lt;Maker sure origin branch name are been checkout.</p>
<p><strong>$git push origin &lt;branch name&gt; </strong>- To push the<br />
new/specific branch to origin.</p>
<p><strong>$git push origin :&lt;branch name&gt; </strong>- To delete the<br />
specific branch name from the origin.</p>
<p><strong>$git reset  – hard &lt;tag name&gt;</strong> &#8211; Roll back base on<br />
tag state.</p>
<p><strong>$git remote rm origin</strong> – remove remote origin.</p>
<p><strong>$git remote add origin &lt;Path name&gt;</strong> &#8211; Add an origin<br />
repository.</p>
<p><strong>$git reset –hard origin/master</strong> – Update your master<br />
branch to origin (overwriting update).</p>
<blockquote><p><a href="http://git-scm.com/">Git is a free &amp; open source</a>, distributed version control system designed to handle everything from small to very large projects with speed and efficiency.</p></blockquote>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2011/10/18/defend-the-freedom-to-install-free-software/" title="Defend The Freedom To Install Free Software">Defend The Freedom To Install Free Software</a></li><li><a href="http://arisroyo.com/2011/08/17/the-three-3-house-bill-that-may-change-technology-in-philippines/" title="The Three (3) House Bill That May Change Technology In Philippines">The Three (3) House Bill That May Change Technology In Philippines</a></li><li><a href="http://arisroyo.com/2011/05/02/business-can-save-a-lot-of-money-by-using-free-software/" title="Business Can Save A Lot Of Money By Using Free Software">Business Can Save A Lot Of Money By Using Free Software</a></li><li><a href="http://arisroyo.com/2010/10/10/finally-ubuntu-10-is-here/" title="Finally Ubuntu 10.10 Is Here!">Finally Ubuntu 10.10 Is Here!</a></li><li><a href="http://arisroyo.com/2010/09/19/software-freedom-day-2010-philippines/" title="Software Freedom Day 2010 (Philippines)">Software Freedom Day 2010 (Philippines)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2011/06/09/my-daily-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Ubuntu 10.10 Is Here!</title>
		<link>http://arisroyo.com/2010/10/10/finally-ubuntu-10-is-here/</link>
		<comments>http://arisroyo.com/2010/10/10/finally-ubuntu-10-is-here/#comments</comments>
		<pubDate>Sun, 10 Oct 2010 01:00:35 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[World]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.arisroyo.com/?p=359</guid>
		<description><![CDATA[A long wait is over as the Ubuntu 10 is now available for download, I&#8217;m really excited to download this and installed to my laptop to have personal tour experience in new Ubuntu 10.10 Before I already planning to switch full in a free operating system, with Ubuntu 10.10 my decision is over I&#8217;m going [...]]]></description>
			<content:encoded><![CDATA[<p>A long wait is over as the Ubuntu 10 is now available for download, I&#8217;m really excited to download this and installed to my laptop to have personal tour experience in new Ubuntu 10.10</p>
<p><center><br />
<a href="http://www.ubuntu.com/"><img src="http://www.ubuntu.com/countdown/banner3.png" border="0" width="180" height="150" alt="The next version of Ubuntu is coming soon"></a><br />
</center></p>
<p>Before I already planning to switch full in a free operating system, with Ubuntu 10.10 my decision is over I&#8217;m going to switch to a Linux operating system and Ubuntu is my personal choice.</p>
<p><a href="http://www.ubuntu.com/desktop">http://www.ubuntu.com/desktop</a></p>
<blockquote><p>Updated On Jan 13, 2012<br />
<strong>NOW ITS 11.10</strong><br />
Actually I&#8217;m using <a href="http://trisquel.info" title="Trisquel Gnu/Linux" target="_blank">Trisquel GNU/Linux</a></p></blockquote>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2011/06/09/my-daily-git/" title="My Daily Git">My Daily Git</a></li><li><a href="http://arisroyo.com/2010/09/19/software-freedom-day-2010-philippines/" title="Software Freedom Day 2010 (Philippines)">Software Freedom Day 2010 (Philippines)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2010/10/10/finally-ubuntu-10-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Freedom Day 2010 (Philippines)</title>
		<link>http://arisroyo.com/2010/09/19/software-freedom-day-2010-philippines/</link>
		<comments>http://arisroyo.com/2010/09/19/software-freedom-day-2010-philippines/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 00:00:13 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Software Freedom Day]]></category>
		<category><![CDATA[University of Philippines]]></category>

		<guid isPermaLink="false">http://www.arisroyo.com/?p=327</guid>
		<description><![CDATA[Another successful milestone for Free and Open Source advocate the Software Freedom Day 2010 here in Philippines event was successful an overcrowd open source community join together to celebrate a worldwide celebration of Free and Open Source Day. This Year University of Philippine host the biggest Software Freedom Day 2010 and in present of Rep. [...]]]></description>
			<content:encoded><![CDATA[<p>Another successful milestone for Free and Open Source advocate the Software Freedom Day 2010 here in Philippines event was successful an overcrowd open source community join together to celebrate a worldwide celebration of Free and Open Source Day.</p>
<p>This Year University of Philippine host the biggest Software Freedom Day 2010 and in present of Rep. Teddy Casiño Author of House Bill 5769, otherwise known as the Free and Open Source Software (FOSS ) made this event really Fossible.</p>
<p><center><br />
<a href="http://www.arisroyo.com/wp-content/uploads/2010/09/IMG_2367.jpg"><img class="aligncenter size-large wp-image-324" title="IMG_2367" src="http://www.arisroyo.com/wp-content/uploads/2010/09/IMG_2367-1024x768.jpg" alt="" width="414" height="306" /></a><a href="http://www.arisroyo.com/wp-content/uploads/2010/09/IMG_2367.jpg"></a>
</p>
<p></center><br />
About Software Freedom Day Philippines &#8211; <a href="http://www.sfdphilippines.org/about">http://www.sfdphilippines.org/about</a></p>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2011/09/05/foss-for-advocacy/" title="FOSS FOR ADVOCACY">FOSS FOR ADVOCACY</a></li><li><a href="http://arisroyo.com/2011/08/17/the-three-3-house-bill-that-may-change-technology-in-philippines/" title="The Three (3) House Bill That May Change Technology In Philippines">The Three (3) House Bill That May Change Technology In Philippines</a></li><li><a href="http://arisroyo.com/2011/06/09/my-daily-git/" title="My Daily Git">My Daily Git</a></li><li><a href="http://arisroyo.com/2010/10/10/finally-ubuntu-10-is-here/" title="Finally Ubuntu 10.10 Is Here!">Finally Ubuntu 10.10 Is Here!</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2010/09/19/software-freedom-day-2010-philippines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

