<?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>Linux Ask! &#187; Mercurial</title>
	<atom:link href="http://www.linuxask.com/topics/revision-control-systems/mercurial/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Revert the effect of an earlier changeset in Mercurial</title>
		<link>http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial</link>
		<comments>http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial#comments</comments>
		<pubDate>Thu, 26 May 2011 16:24:41 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3044</guid>
		<description><![CDATA[Revert the effect of an earlier changeset in Mercurial Answer: In Mercurial, if you want to revert the effect of an earlier changeset, even the changes have been pushed to remote, it is still possible with the hg backout command. 1. Find the revision you want to backout using hg log # hg log 2. <a href='http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial" rel="bookmark" title="Do not save backup copies of files when doing revert in Mercurial">Do not save backup copies of files when doing revert in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Revert the effect of an earlier changeset in Mercurial</p>
<p><strong>Answer:</strong></p>
<p>In <strong>Mercurial</strong>, if you want to revert the effect of an earlier changeset, even the changes have been <strong>pushed </strong>to remote, it is still possible with the <strong>hg backout</strong> command.</p>
<p>1. Find the revision you want to backout using <strong>hg log</strong><br />
<code># hg log</code></p>
<p>2. Assume you want to backout to the revision <strong>99</strong>, then you can<br />
<code># hg backout -r 99</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial" rel="bookmark" title="Do not save backup copies of files when doing revert in Mercurial">Do not save backup copies of files when doing revert in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show ignored files in Mercurial</title>
		<link>http://www.linuxask.com/questions/show-ignored-files-in-mercurial</link>
		<comments>http://www.linuxask.com/questions/show-ignored-files-in-mercurial#comments</comments>
		<pubDate>Tue, 10 May 2011 05:09:46 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3006</guid>
		<description><![CDATA[Show ignored files in Mercurial Answer: To show list of files are currently ignored by Mercurial, e.g. to check if your .hgignore is working. You can use the following command in your working repository: # hg st -i<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial" rel="bookmark" title="Do not save backup copies of files when doing revert in Mercurial">Do not save backup copies of files when doing revert in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Show ignored files in Mercurial</p>
<p><strong>Answer:</strong></p>
<p>To show list of files are currently ignored by <strong>Mercurial</strong>, e.g. to check if your <strong>.hgignore</strong> is working.</p>
<p>You can use the following command in your working repository:</p>
<p><code># hg st -i</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial" rel="bookmark" title="Do not save backup copies of files when doing revert in Mercurial">Do not save backup copies of files when doing revert in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/show-ignored-files-in-mercurial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a username in Mercurial</title>
		<link>http://www.linuxask.com/questions/setting-up-a-username-in-mercurial</link>
		<comments>http://www.linuxask.com/questions/setting-up-a-username-in-mercurial#comments</comments>
		<pubDate>Sat, 26 Mar 2011 09:36:02 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2894</guid>
		<description><![CDATA[Setting up a username in Mercurial Answer: To setup your Mercurial's username, you need to create the file .hgrc in your home folder, e.g. # touch ~/.hgrc And add the following lines: [ui] username = John Doe &#60;john@example.com&#62;<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/setting-up-local-username-and-email-with-git" rel="bookmark" title="Setting up local username and email with git">Setting up local username and email with git </a></li>
<li><a href="http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial" rel="bookmark" title="Adding the missing ignore function to Mercurial">Adding the missing ignore function to Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Setting up a username in Mercurial </p>
<p><strong>Answer:</strong></p>
<p>To setup your <strong>Mercurial's </strong>username, you need to create the file <strong>.hgrc</strong> in your home folder, </p>
<p>e.g.</p>
<p><code># touch ~/.hgrc</code></p>
<p>And add the following lines:</p>
<pre><code>[ui]
username = John Doe &lt;john@example.com&gt;</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/setting-up-local-username-and-email-with-git" rel="bookmark" title="Setting up local username and email with git">Setting up local username and email with git </a></li>
<li><a href="http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial" rel="bookmark" title="Adding the missing ignore function to Mercurial">Adding the missing ignore function to Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/setting-up-a-username-in-mercurial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clone a remote Mercurial repository over SSH</title>
		<link>http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh</link>
		<comments>http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh#comments</comments>
		<pubDate>Sun, 20 Mar 2011 09:17:58 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2870</guid>
		<description><![CDATA[Clone a remote Mercurial repository over SSH Answer: To clone a remote Mercurial repository over SSH, is easy with the following command. E.g. # hg clone ssh://john@remote-host//remote-folder /local-folder The key is the double slash // That's it.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-svn-repository-on-local-drive" rel="bookmark" title="Create a SVN Repository on local drive">Create a SVN Repository on local drive </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Clone a remote Mercurial repository over SSH</p>
<p><strong>Answer:</strong></p>
<p>To clone a remote <strong>Mercurial </strong>repository over SSH, is easy with the following command.</p>
<p>E.g.</p>
<p><code># hg clone ssh://john@remote-host//remote-folder /local-folder</code></p>
<p>The key is the <strong>double slash //</strong></p>
<p>That's it.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-svn-repository-on-local-drive" rel="bookmark" title="Create a SVN Repository on local drive">Create a SVN Repository on local drive </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do not save backup copies of files when doing revert in Mercurial</title>
		<link>http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial</link>
		<comments>http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial#comments</comments>
		<pubDate>Mon, 14 Mar 2011 04:59:34 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2856</guid>
		<description><![CDATA[Do not save backup copies of files when doing revert in Mercurial Answer: When you want to revert your local changes by executing the command "hg revert filename", Mercurial will save your changes in the file "filename.orig". To skip this, use the option - "--no-backup" E.g. # hg revert --no-backup filename<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial" rel="bookmark" title="Revert the effect of an earlier changeset in Mercurial">Revert the effect of an earlier changeset in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Do not save backup copies of files when doing revert in Mercurial </p>
<p><strong>Answer:</strong></p>
<p>When you want to revert your local changes by executing the command "<strong>hg revert filename</strong>", Mercurial will save your changes in the file "<strong>filename.orig</strong>".</p>
<p>To skip this, use the option - "<strong>--no-backup</strong>"</p>
<p>E.g.</p>
<p><code># hg revert --no-backup filename</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/revert-the-effect-of-an-earlier-changeset-in-mercurial" rel="bookmark" title="Revert the effect of an earlier changeset in Mercurial">Revert the effect of an earlier changeset in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/do-not-save-backup-copies-of-files-when-doing-revert-in-mercurial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suggested Mercurial .hgignore settings for XCode projects</title>
		<link>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects</link>
		<comments>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects#comments</comments>
		<pubDate>Sat, 26 Feb 2011 15:37:46 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mercurial]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2829</guid>
		<description><![CDATA[Suggested Mercurial .hgignore settings for XCode projects Answer: Save the following lines as .hgignore and put it under the root of your project root directory, Mercurial will ignore them automatically. ^build/* \.mode1v3 \.pbxuser \.DS_Store ^\.*<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial" rel="bookmark" title="Adding the missing ignore function to Mercurial">Adding the missing ignore function to Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Suggested Mercurial .hgignore settings for XCode projects</p>
<p><strong>Answer:</strong></p>
<p>Save the following lines as <strong>.hgignore</strong> and put it under the root of your project root directory, <strong>Mercurial</strong> will ignore them automatically.</p>
<pre><code>^build/*
\.mode1v3
\.pbxuser
\.DS_Store
^\.*</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial" rel="bookmark" title="Adding the missing ignore function to Mercurial">Adding the missing ignore function to Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial" rel="bookmark" title="Clone an existing project using Mercurial">Clone an existing project using Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding the missing ignore function to Mercurial</title>
		<link>http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial</link>
		<comments>http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial#comments</comments>
		<pubDate>Thu, 24 Feb 2011 15:28:48 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2824</guid>
		<description><![CDATA[Adding the missing ignore function to Mercurial Answer: The following script add the ignore function to the Mercurial #!/usr/bin/env python """Ignore pathnames and patterns""" import os def ignore(ui, repo, *pathnames): """Ignore the given pathnames and patterns.""" outf = open(os.path.join(repo.root, ".hgignore"), "a") for p in pathnames: outf.write(p + "\n") outf.close() return cmdtable = { 'ignore': (ignore, <a href='http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects" rel="bookmark" title="Suggested Mercurial .hgignore settings for XCode projects">Suggested Mercurial .hgignore settings for XCode projects </a></li>
<li><a href="http://www.linuxask.com/questions/setting-up-a-username-in-mercurial" rel="bookmark" title="Setting up a username in Mercurial">Setting up a username in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Adding the missing ignore function to Mercurial </p>
<p><strong>Answer:</strong></p>
<p>The following script add the ignore function to the <strong>Mercurial</strong></p>
<pre><code>#!/usr/bin/env python
"""Ignore pathnames and patterns"""
import os
def ignore(ui, repo, *pathnames):
    """Ignore the given pathnames and patterns."""
    outf = open(os.path.join(repo.root, ".hgignore"), "a")
    for p in pathnames:
        outf.write(p + "\n")
    outf.close()
    return
cmdtable = {
    'ignore': (ignore, [], "hg ignore pathname [pathname]"),
}
</code></pre>
<p>Save the script as <strong>ignore.py</strong> (e.g. ~/hg/ignore.py), and add the following line in your own <strong>~/.hgrc</strong></p>
<pre><code>[extensions]
ignore = ~/hg/ignore.py
</code></pre>
<p>Reference: <a href="http://dmoonc.com/blog/?p=266">http://dmoonc.com/blog/?p=266</a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects" rel="bookmark" title="Suggested Mercurial .hgignore settings for XCode projects">Suggested Mercurial .hgignore settings for XCode projects </a></li>
<li><a href="http://www.linuxask.com/questions/setting-up-a-username-in-mercurial" rel="bookmark" title="Setting up a username in Mercurial">Setting up a username in Mercurial </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/adding-the-missing-ignore-function-to-mercurial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clone an existing project using Mercurial</title>
		<link>http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial</link>
		<comments>http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial#comments</comments>
		<pubDate>Sat, 29 Jan 2011 14:32:37 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Mercurial]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=2782</guid>
		<description><![CDATA[Clone an existing project using Mercurial Answer: To clone an existing Mercurial project, use the following simple command: # hg clone https://bitbucket.org/ellislab/codeigniter That's all.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
<li><a href="http://www.linuxask.com/questions/add-an-existing-user-to-an-existing-group" rel="bookmark" title="Add an existing user to an existing group">Add an existing user to an existing group </a></li>
<li><a href="http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects" rel="bookmark" title="Suggested Mercurial .hgignore settings for XCode projects">Suggested Mercurial .hgignore settings for XCode projects </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Clone an existing project using Mercurial </p>
<p><strong>Answer:</strong></p>
<p>To clone an existing <strong>Mercurial </strong> project, use the following simple command:</p>
<p><code># hg clone https://bitbucket.org/ellislab/codeigniter</code></p>
<p>That's all.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
<li><a href="http://www.linuxask.com/questions/add-an-existing-user-to-an-existing-group" rel="bookmark" title="Add an existing user to an existing group">Add an existing user to an existing group </a></li>
<li><a href="http://www.linuxask.com/questions/suggested-mercurial-hgignore-settings-for-xcode-projects" rel="bookmark" title="Suggested Mercurial .hgignore settings for XCode projects">Suggested Mercurial .hgignore settings for XCode projects </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/clone-an-existing-project-using-mercurial/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
