<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Mercurial bookmarks</title>
	<atom:link href="http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/</link>
	<description></description>
	<lastBuildDate>Fri, 27 Jan 2012 13:31:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Ronan Amicel</title>
		<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/comment-page-1/#comment-16804</link>
		<dc:creator>Ronan Amicel</dc:creator>
		<pubDate>Tue, 03 Jan 2012 15:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=80#comment-16804</guid>
		<description>Since version 1.8, the bookmark command is part of core (no need to enable an extension).

Also, the &quot;track.current&quot; option was removed, and the behavior of &quot;track.current=True&quot; is now the default.

Source: http://mercurial.selenic.com/wiki/BookmarksExtension</description>
		<content:encoded><![CDATA[<p>Since version 1.8, the bookmark command is part of core (no need to enable an extension).</p>
<p>Also, the &#8220;track.current&#8221; option was removed, and the behavior of &#8220;track.current=True&#8221; is now the default.</p>
<p>Source: <a href="http://mercurial.selenic.com/wiki/BookmarksExtension" rel="nofollow">http://mercurial.selenic.com/wiki/BookmarksExtension</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/comment-page-1/#comment-13658</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 24 Jan 2011 15:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=80#comment-13658</guid>
		<description>1. Starting with Mercurial 1.6, bookmarks can also be pushed and pulled between repositories.
2. There is a notion of a &#039;current&#039; bookmark. Set 

[bookmarks]
track.current = True 

to obtain a more Git-like experience(see http://mercurial.selenic.com/wiki/BookmarksExtension)</description>
		<content:encoded><![CDATA[<p>1. Starting with Mercurial 1.6, bookmarks can also be pushed and pulled between repositories.<br />
2. There is a notion of a &#8216;current&#8217; bookmark. Set </p>
<p>[bookmarks]<br />
track.current = True </p>
<p>to obtain a more Git-like experience(see <a href="http://mercurial.selenic.com/wiki/BookmarksExtension" rel="nofollow">http://mercurial.selenic.com/wiki/BookmarksExtension</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: poko</title>
		<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/comment-page-1/#comment-53</link>
		<dc:creator>poko</dc:creator>
		<pubDate>Sat, 27 Dec 2008 21:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=80#comment-53</guid>
		<description>http://markmail.org/message/nx77nmys6awd43xm#query:+page:1+mid:757yjbjdqefc4j4w+state:results

you can list the history for one particular bookmark like this:

hg log -prf bookmark:0

looks like hg log bookmark won&#039;t work</description>
		<content:encoded><![CDATA[<p><a href="http://markmail.org/message/nx77nmys6awd43xm#query:+page:1+mid:757yjbjdqefc4j4w+state:results" rel="nofollow">http://markmail.org/message/nx77nmys6awd43xm#query:+page:1+mid:757yjbjdqefc4j4w+state:results</a></p>
<p>you can list the history for one particular bookmark like this:</p>
<p>hg log -prf bookmark:0</p>
<p>looks like hg log bookmark won&#8217;t work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: poko </title>
		<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/comment-page-1/#comment-52</link>
		<dc:creator>poko </dc:creator>
		<pubDate>Sat, 27 Dec 2008 13:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=80#comment-52</guid>
		<description>this looks fantastic! 

i have one quick question though:

&quot;...This means you can also do hg log my-tip or hg qimport -r my-tip. &quot;

zsuzss-macbook:f zs$ hg bookmarks
   my-tip                    3:9dc73b7ed083
 * orig                      8:2587f34b8edf

zsuzss-macbook:f zs$ hg -v
Mercurial Distributed SCM (version 1.1+20081202)


zsuzss-macbook:f zs$  hg add test-orig
zsuzss-macbook:f zs$  hg commit -m &quot;test-orig&quot;
 
zsuzss-macbook:f zs$  hg log orig
zsuzss-macbook:f zs$ 
------
should not  &quot;hg log orig&quot; show the log for this commit?

(interestingly enough &quot;hg view orig&quot; works as expected)</description>
		<content:encoded><![CDATA[<p>this looks fantastic! </p>
<p>i have one quick question though:</p>
<p>&#8220;&#8230;This means you can also do hg log my-tip or hg qimport -r my-tip. &#8221;</p>
<p>zsuzss-macbook:f zs$ hg bookmarks<br />
   my-tip                    3:9dc73b7ed083<br />
 * orig                      8:2587f34b8edf</p>
<p>zsuzss-macbook:f zs$ hg -v<br />
Mercurial Distributed SCM (version 1.1+20081202)</p>
<p>zsuzss-macbook:f zs$  hg add test-orig<br />
zsuzss-macbook:f zs$  hg commit -m &#8220;test-orig&#8221;</p>
<p>zsuzss-macbook:f zs$  hg log orig<br />
zsuzss-macbook:f zs$<br />
&#8212;&#8212;<br />
should not  &#8220;hg log orig&#8221; show the log for this commit?</p>
<p>(interestingly enough &#8220;hg view orig&#8221; works as expected)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesper Noehr</title>
		<link>http://blog.experimentalworks.net/2008/11/mercurial-bookmarks/comment-page-1/#comment-42</link>
		<dc:creator>Jesper Noehr</dc:creator>
		<pubDate>Sun, 09 Nov 2008 13:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=80#comment-42</guid>
		<description>Nice! This is one of my new favorite features in mercurial.

One thing I personally think is a huge advantage over named branches is the ability to delete bookmarks. I didn&#039;t see this mentioned in your post, but perhaps you can give it a quick mention?

Great work!</description>
		<content:encoded><![CDATA[<p>Nice! This is one of my new favorite features in mercurial.</p>
<p>One thing I personally think is a huge advantage over named branches is the ability to delete bookmarks. I didn&#8217;t see this mentioned in your post, but perhaps you can give it a quick mention?</p>
<p>Great work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

