<?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>Vim, Cygwin, MySQL &#38; Zsh Tips by zzapper &#187; version control</title>
	<atom:link href="http://zzapper.co.uk/tag/version-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://zzapper.co.uk</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 23:15:31 +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>Using Git for Document/Software Version Control</title>
		<link>http://zzapper.co.uk/using-git-for-documentsoftware-version-control/</link>
		<comments>http://zzapper.co.uk/using-git-for-documentsoftware-version-control/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 19:52:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tips]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[gitk]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://zzapper.co.uk/?p=77</guid>
		<description><![CDATA[I had been using my own ad-hoc system for years but recently started using CVS to maintain a history of my file and document changes. I was quite happy with CVS but everyone told me I should be using Git instead.  Git seems to be simpler and more intuitive. I can set up git for [...]]]></description>
			<content:encoded><![CDATA[<p>I had been using my own ad-hoc system for years but recently started using CVS to maintain a history of my file and document changes. I was quite happy with CVS but everyone told me I should be using Git instead.  Git seems to be simpler and more intuitive. I can set up git for a folder or project very quickly. You just need the following 5 commands to get going</p>
<p>git init       (set up git for the current directory)<br />
git add *.php   (add all your php files or whatever)<br />
git commit -m &#8220;first version&#8221;    (also need to commit all your existing php files)<br />
vi index.php (make a few changes)<br />
git commit -a -m &#8220;Added new date feature&#8221;   (do this periodically to maintain version control)<br />
<strong></strong></p>
<p><strong>gitk </strong>is a simple TK Gui which allows you to review you versions etc. I am delighted to have version control, all I have to do is remember to do a &gt; git commit -a -m &#8220;Added new date feature&#8221; every now and again (eg daily)</p>
]]></content:encoded>
			<wfw:commentRss>http://zzapper.co.uk/using-git-for-documentsoftware-version-control/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

