<?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>revision control Archives | Programming Zen</title>
	<atom:link href="https://programmingzen.com/tag/revision-control/feed/" rel="self" type="application/rss+xml" />
	<link>https://programmingzen.com/tag/revision-control/</link>
	<description>Meditations on programming, startups, and technology</description>
	<lastBuildDate>Sun, 08 May 2016 19:25:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">1397766</site>	<item>
		<title>Tip #2 for Young Programmers: Learn Revision Control</title>
		<link>https://programmingzen.com/tip-2-for-young-programmers/</link>
					<comments>https://programmingzen.com/tip-2-for-young-programmers/#comments</comments>
		
		<dc:creator><![CDATA[Antonio Cangiano]]></dc:creator>
		<pubDate>Tue, 03 May 2016 14:00:27 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[how to become a programmer]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming advice]]></category>
		<category><![CDATA[revision control]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tips for young programmers]]></category>
		<category><![CDATA[version control]]></category>
		<guid isPermaLink="false">http://programmingzen.com/?p=1650</guid>

					<description><![CDATA[<p>A surprising amount of people in our profession are&#xA0;not familiar with revision control software. In the world of computer software engineering, revision control is any kind of practice that tracks and provides control over changes to source code. Software developers sometimes use revision control software to maintain documentation and configuration files as well as source code. &#x2014; Wikipedia Over the past ten years, the growing prominence of open source software has helped to make several best practices far more established, but it&#x2019;s still all too common to encounter developers who are not familiar with revision/version control software such as Git, </p>
<p>The post <a href="https://programmingzen.com/tip-2-for-young-programmers/">Tip #2 for Young Programmers: Learn Revision Control</a> appeared first on <a href="https://programmingzen.com">Programming Zen</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>A surprising amount of people in our profession are not familiar with revision control software.</p>
<blockquote><p>In the world of computer software engineering, revision control is any kind of practice that tracks and provides control over changes to source code. Software developers sometimes use revision control software to maintain documentation and configuration files as well as source code. — <a href="https://en.wikipedia.org/wiki/Version_control" target="_blank">Wikipedia</a></p></blockquote>
<p>Over the past ten years, the growing prominence of open source software has helped to make several best practices far more established, but it’s still all too common to encounter developers who are not familiar with revision/version control software such as Git, Mercurial, or Apache Subversion (SVN).</p>
<p>Understandably, this lack of knowledge is much more noticeable among young developers and students.</p>
<p>Let me be absolutely clear about this: there is no software development today without revision control. Anything non-trivial will require that you use revision control, whether developing in a large team, a startup, or even on your own.</p>
<p><img data-recalc-dims="1" decoding="async" style="float: right;" class="alignright size-medium wp-image-1651" src="https://i0.wp.com/programmingzen.com/wp-content/uploads/2016/05/git-logo.png?resize=300%2C125&#038;ssl=1" alt="Git logo" width="300" height="125" srcset="https://i0.wp.com/programmingzen.com/wp-content/uploads/2016/05/git-logo.png?resize=300%2C125&amp;ssl=1 300w, https://i0.wp.com/programmingzen.com/wp-content/uploads/2016/05/git-logo.png?resize=768%2C321&amp;ssl=1 768w, https://i0.wp.com/programmingzen.com/wp-content/uploads/2016/05/git-logo.png?w=910&amp;ssl=1 910w" sizes="(max-width: 300px) 100vw, 300px" />If you’re an aspiring developer, your career in our field will be enhanced by studying Git. Why Git specifically? It provides several advantages over SVN (mostly due to its distributed nature), and it’s more popular than the also excellent Mercurial.</p>
<p>It’s worth noting that twelve years ago I would have recommended that you learn SVN. Things change, and it’s possible that in another ten or fifteen years, Git will no longer be the reigning king in this arena.</p>
<p>I’m operating, however, under the fair assumption that you want to work today or in the near future. If so, learn Git. <a id="fnref:1" class="footnote" title="see footnote" href="#fn:1">[1]</a></p>
<p>Bear in mind that you don’t need to become an expert in what is a fairly complex system. Just master the basics, so that you’re competent enough to resolve most common situations and collaborate with fellow developers in your team.</p>
<p>Learn how to create a repository, clone it, pull, add, delete, commit, push, create and merge branches, diff files, revert changes, and so on. Basic stuff you’ll do day in and day out when changing code.</p>
<p>It won’t take you more than a couple of weeks of practice to really nail the fundamentals.</p>
<p>Another couple of related suggestions:</p>
<ol>
<li>Add Git to your resume. <a id="fnref:2" class="footnote" title="see footnote" href="#fn:2">[2]</a></li>
<li>You’ll need a place to host your Git repositories. Sign up with <a href="https://github.com">Github</a> <a id="fnref:3" class="footnote" title="see footnote" href="#fn:3">[3]</a> (and if you want a private repository for free,<a href="https://BitBucket.com">BitBucket</a>). Even if you’re not at a point where you can commit code to your repository, you can still practice Git by changing and pushing text files to it.</li>
</ol>
<p>To learn the basics of Git I recommend that you use these two resources:</p>
<ol>
<li><a href="https://try.github.io/levels/1/challenges/1">Try Git</a>.</li>
<li><a href="https://try.github.io/levels/1/challenges/1">https://www.learnenough.com/git-tutorial</a> by Michael Hartl</li>
</ol>
<p>They should get you well on your way to Git productivity.</p>
<div class="footnotes">
<hr />
<ol>
<li id="fn:1">The principles of how revision control software works remain the same, even if a different solution were to show up on the market at a later date. <a href="#fnref:1"> ^</a></li>
<li id="fn:2">While interviewers will just assume that you know Git, placing this skill on your resume, especially if you’re a student or inexperienced developer, will clear up any doubts they may have. <a class="reversefootnote" title="return to article" href="#fnref:2"> ^</a></li>
<li id="fn:3">If you have a Github profile that you use to contribute to open source, make sure that it is listed on your resume, too. Watch for more on this specific point in a future post. <a class="reversefootnote" title="return to article" href="#fnref:3"> ^</a></li>
</ol>
</div>
<p>The post <a href="https://programmingzen.com/tip-2-for-young-programmers/">Tip #2 for Young Programmers: Learn Revision Control</a> appeared first on <a href="https://programmingzen.com">Programming Zen</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://programmingzen.com/tip-2-for-young-programmers/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1650</post-id>	</item>
	</channel>
</rss>
