<?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>Mozketo &#187; Source Control</title>
	<atom:link href="http://mozketo.com/category/source-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://mozketo.com</link>
	<description>Now a dev diary</description>
	<lastBuildDate>Thu, 25 Mar 2010 09:17:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mercurial .hgignore for xcode/cocoa</title>
		<link>http://mozketo.com/mercurial-hgignore-for-xcodecocoa/</link>
		<comments>http://mozketo.com/mercurial-hgignore-for-xcodecocoa/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 22:25:36 +0000</pubDate>
		<dc:creator>Mozketo</dc:creator>
				<category><![CDATA[Source Control]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://mozketo.com/?p=275</guid>
		<description><![CDATA[Here&#8217;s my Mercurial .hgignore template for xcode/cocoa projects.

?View Code BASHsyntax: glob
&#160;
.DS_Store
&#160;
# Backup files left behind by the Emacs editor.
*~
&#160;
# Lock files used by the Emacs editor.
.\#*
&#160;
# Temporary files used by the vim editor.
.*.swp
&#160;
# Temporary files used by TestMate
._*
&#160;
# build directories
**/build/*
build/*
&#160;
# XCode user data
**.pbxuser
**.mode?v?
**.perspectivev?
&#160;
# documentation
**.docset/*
&#160;
# for those crazies using svn and hg at the same time
*.svn*

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s my <a href="http://mercurial.selenic.com/wiki/">Mercurial</a> .hgignore template for xcode/cocoa projects.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p275code2'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2752"><td class="code" id="p275code2"><pre class="bash" style="font-family:monospace;">syntax: glob
&nbsp;
.DS_Store
&nbsp;
<span style="color: #666666; font-style: italic;"># Backup files left behind by the Emacs editor.</span>
<span style="color: #000000; font-weight: bold;">*</span>~
&nbsp;
<span style="color: #666666; font-style: italic;"># Lock files used by the Emacs editor.</span>
.\<span style="color: #666666; font-style: italic;">#*</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Temporary files used by the vim editor.</span>
.<span style="color: #000000; font-weight: bold;">*</span>.swp
&nbsp;
<span style="color: #666666; font-style: italic;"># Temporary files used by TestMate</span>
._<span style="color: #000000; font-weight: bold;">*</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># build directories</span>
<span style="color: #000000; font-weight: bold;">**/</span>build<span style="color: #000000; font-weight: bold;">/*</span>
build<span style="color: #000000; font-weight: bold;">/*</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># XCode user data</span>
<span style="color: #000000; font-weight: bold;">**</span>.pbxuser
<span style="color: #000000; font-weight: bold;">**</span>.mode?v?
<span style="color: #000000; font-weight: bold;">**</span>.perspectivev?
&nbsp;
<span style="color: #666666; font-style: italic;"># documentation</span>
<span style="color: #000000; font-weight: bold;">**</span>.docset<span style="color: #000000; font-weight: bold;">/*</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># for those crazies using svn and hg at the same time</span>
<span style="color: #000000; font-weight: bold;">*</span>.svn<span style="color: #000000; font-weight: bold;">*</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://mozketo.com/mercurial-hgignore-for-xcodecocoa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercurial .hgignore for C# and VB .net Projects</title>
		<link>http://mozketo.com/mercurial-hignore/</link>
		<comments>http://mozketo.com/mercurial-hignore/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 11:26:59 +0000</pubDate>
		<dc:creator>Mozketo</dc:creator>
				<category><![CDATA[Source Control]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://mozketo.com/?p=220</guid>
		<description><![CDATA[There&#8217;s certain files and folders that you don&#8217;t want to put into source control. With Mercurial all you need is a .hgignore file in the root path of your project. A simple windowsy way of doing this is (from a command line) is by typing
notepad c:\path_to_code\.hgignore
This will create the file so now simply add the [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s certain files and folders that you don&#8217;t want to put into source control. With <a href="http://mercurial.selenic.com/wiki/">Mercurial </a>all you need is a .hgignore file in the root path of your project. A simple windowsy way of doing this is (from a command line) is by typing</p>
<p><code>notepad c:\path_to_code\.hgignore</code></p>
<p>This will create the file so now simply add the following lines to the file:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p220code5'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2205"><td class="code" id="p220code5"><pre class="dos" style="font-family:monospace;"># use glob syntax.
syntax: glob
&nbsp;
# Misc Mac/Windows stuff
&nbsp;
.DS_Store
Thumbs.db
Desktop.ini
&nbsp;
# builds
&nbsp;
*.exe
*.ex_
&nbsp;
# vb6
&nbsp;
*.SCC
*.vbw
*.pdb
*.log
*.Log
&nbsp;
# c-sharp
#ProjectName/bin
#ProjectName/obj
*.user
*.suo
_ReSharper.*
*.sln.cache</pre></td></tr></table></div>

<p><strong>Note:</strong> You need to change #ProjectName to your project foldername.</p>
<p>Now feel free to init/add/commit:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p220code6'); return false;">View Code</a> DOS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2206"><td class="code" id="p220code6"><pre class="dos" style="font-family:monospace;">hg init
hg add
hg commit -m &quot;Initial Commit with ignores&quot;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://mozketo.com/mercurial-hignore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
