<?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: GIT: Using the stash</title> <atom:link href="http://ariejan.net/2008/04/23/git-using-the-stash/feed/" rel="self" type="application/rss+xml" /><link>http://ariejan.net/2008/04/23/git-using-the-stash/</link> <description>Code Monkey</description> <lastBuildDate>Wed, 10 Mar 2010 01:20:05 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Git Exercise&#160;&#124;&#160;Git Workshop</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-11599</link> <dc:creator>Git Exercise&#160;&#124;&#160;Git Workshop</dc:creator> <pubDate>Wed, 24 Feb 2010 03:21:47 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-11599</guid> <description>[...] git stash: http://ariejan.net/2008/04/23/git-using-the-stash/ [...]</description> <content:encoded><![CDATA[<p>[...] git stash: <a
href="http://ariejan.net/2008/04/23/git-using-the-stash/" rel="nofollow">http://ariejan.net/2008/04/23/git-using-the-stash/</a> [...]</p> ]]></content:encoded> </item> <item><title>By: Git Workshop Agenda&#160;&#124;&#160;Git Workshop</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-11596</link> <dc:creator>Git Workshop Agenda&#160;&#124;&#160;Git Workshop</dc:creator> <pubDate>Tue, 23 Feb 2010 07:54:35 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-11596</guid> <description>[...] git stash: http://ariejan.net/2008/04/23/git-using-the-stash/ [...]</description> <content:encoded><![CDATA[<p>[...] git stash: <a
href="http://ariejan.net/2008/04/23/git-using-the-stash/" rel="nofollow">http://ariejan.net/2008/04/23/git-using-the-stash/</a> [...]</p> ]]></content:encoded> </item> <item><title>By: rofrol's status on Monday, 26-Oct-09 20:41:34 UTC - Identi.ca</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-11089</link> <dc:creator>rofrol's status on Monday, 26-Oct-09 20:41:34 UTC - Identi.ca</dc:creator> <pubDate>Mon, 26 Oct 2009 20:41:52 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-11089</guid> <description>[...] using the #git stash http://ariejan.net/2008/04/23/git-using-the-stash/ [...]</description> <content:encoded><![CDATA[<p>[...] using the #git stash <a
href="http://ariejan.net/2008/04/23/git-using-the-stash/" rel="nofollow">http://ariejan.net/2008/04/23/git-using-the-stash/</a> [...]</p> ]]></content:encoded> </item> <item><title>By: Back Up (Some Of) That Local Data! &#171; New Fun Blog - Scott Bilas</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-10664</link> <dc:creator>Back Up (Some Of) That Local Data! &#171; New Fun Blog - Scott Bilas</dc:creator> <pubDate>Wed, 07 Jan 2009 07:58:26 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-10664</guid> <description>[...] on top of the incremental backup. Right now I’m eyeing git for ideas because it has features like stash and bisect. I’m also considering adding on a continuous backup system (like Norton GoBack or [...]</description> <content:encoded><![CDATA[<p>[...] on top of the incremental backup. Right now I’m eyeing git for ideas because it has features like stash and bisect. I’m also considering adding on a continuous backup system (like Norton GoBack or [...]</p> ]]></content:encoded> </item> <item><title>By: Caius Durling</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-10623</link> <dc:creator>Caius Durling</dc:creator> <pubDate>Tue, 28 Oct 2008 21:53:40 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-10623</guid> <description>Thanks for this, I only ever use git stash quickly to stash my changes whilst I change branch (when I realise I&#039;m working on the wrong branch locally!) and remembering to clear the stash after applying it everytime was driving me nuts.I now know I can git stash pop it instead, which does the cleanup for me, cheers!</description> <content:encoded><![CDATA[<p>Thanks for this, I only ever use git stash quickly to stash my changes whilst I change branch (when I realise I&#8217;m working on the wrong branch locally!) and remembering to clear the stash after applying it everytime was driving me nuts.</p><p>I now know I can git stash pop it instead, which does the cleanup for me, cheers!</p> ]]></content:encoded> </item> <item><title>By: Stefan Karpinski</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-10617</link> <dc:creator>Stefan Karpinski</dc:creator> <pubDate>Thu, 16 Oct 2008 21:46:34 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-10617</guid> <description>This is not quite right. All the examples with &quot;0&quot; used to identify a stash should use the name &quot;stash@{0}&quot;. Unfortunately, these examples will work, but only because git stash has the broken behavior that if it doesn&#039;t recognize a stash name, it applies the command to &quot;stash@{0}&quot; by default. That means that if you use &quot;1&quot; instead of &quot;0&quot; in those examples, you will apply, drop or pop the top stash, &quot;stash@{0}&quot;, even though you really wanted to do that to the second stashed state from the top. Not good! There&#039;s been talk on the git mailing list about fixing this broken behavior, but I don&#039;t believe it&#039;s fixed as of the 1.6.0.2 version of git.</description> <content:encoded><![CDATA[<p>This is not quite right. All the examples with &#8220;0&#8243; used to identify a stash should use the name &#8220;stash@{0}&#8221;. Unfortunately, these examples will work, but only because git stash has the broken behavior that if it doesn&#8217;t recognize a stash name, it applies the command to &#8220;stash@{0}&#8221; by default. That means that if you use &#8220;1&#8243; instead of &#8220;0&#8243; in those examples, you will apply, drop or pop the top stash, &#8220;stash@{0}&#8221;, even though you really wanted to do that to the second stashed state from the top. Not good! There&#8217;s been talk on the git mailing list about fixing this broken behavior, but I don&#8217;t believe it&#8217;s fixed as of the 1.6.0.2 version of git.</p> ]]></content:encoded> </item> <item><title>By: Monkey&#8217;s thumb &#187; Blog Archive &#187; Using Git with Subversion: Part I (Installation)</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-10576</link> <dc:creator>Monkey&#8217;s thumb &#187; Blog Archive &#187; Using Git with Subversion: Part I (Installation)</dc:creator> <pubDate>Sat, 02 Aug 2008 04:58:35 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-10576</guid> <description>[...] can use Git with a Subversion repository to get some of the Git goodness, local branches, stashes and much more, without having to persuade everyone else on your project to migrate to [...]</description> <content:encoded><![CDATA[<p>[...] can use Git with a Subversion repository to get some of the Git goodness, local branches, stashes and much more, without having to persuade everyone else on your project to migrate to [...]</p> ]]></content:encoded> </item> <item><title>By: Monkey&#8217;s thumb &#187; Blog Archive &#187; Using Git with subversion: Part II (Practice)</title><link>http://ariejan.net/2008/04/23/git-using-the-stash/comment-page-1/#comment-10575</link> <dc:creator>Monkey&#8217;s thumb &#187; Blog Archive &#187; Using Git with subversion: Part II (Practice)</dc:creator> <pubDate>Sat, 02 Aug 2008 04:51:05 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=247#comment-10575</guid> <description>[...] on how to use Git with a Subversion repository to get some of the Git goodness, local branches, stashes and much more, without having to persuade everyone else on your project to migrate to [...]</description> <content:encoded><![CDATA[<p>[...] on how to use Git with a Subversion repository to get some of the Git goodness, local branches, stashes and much more, without having to persuade everyone else on your project to migrate to [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached (user agent is rejected)

Served from: starbuck.ariejan.net @ 2010-03-10 08:34:28 -->