<?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: Ignore changes in a working tree file</title>
	<atom:link href="http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/</link>
	<description>JavaScript, Web Development, Ruby, and Technology.</description>
	<lastBuildDate>Sun, 06 Jun 2010 14:40:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Git Ignoring already committed (tracked) files - M-x Kelsin</title>
		<link>http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/comment-page-1/#comment-946</link>
		<dc:creator>Git Ignoring already committed (tracked) files - M-x Kelsin</dc:creator>
		<pubDate>Wed, 05 Aug 2009 17:12:50 +0000</pubDate>
		<guid isPermaLink="false">http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/#comment-946</guid>
		<description>[...] The simple answer to this is to tell git to mark this file as &#8220;not changed&#8221;. I found this post that told me about this feature. This feature exists in order to help people with slow filesystems [...]</description>
		<content:encoded><![CDATA[<p>[...] The simple answer to this is to tell git to mark this file as &#8220;not changed&#8221;. I found this post that told me about this feature. This feature exists in order to help people with slow filesystems [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher Giroir</title>
		<link>http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/comment-page-1/#comment-945</link>
		<dc:creator>Christopher Giroir</dc:creator>
		<pubDate>Wed, 05 Aug 2009 17:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/#comment-945</guid>
		<description>I use this when working locally on some rails projects. I edit our main controller to ignore some authentication that I don&#039;t have access to but I don&#039;t want to commit that. I don&#039;t want to stash away the changes, I just want git to ignore them so I don&#039;t accidentally commit it.

To see a list of these I use this command:
git ls-files -v &#124; grep ^[a-z]

The -v on ls-files shows assume-unchanged files as lower case versions of the normal tags (-t shows uppercase no matter what) and then I grep for only lower case tags. If anyone has a better way of doing this please tell me :)

To make this easier to use I have an alias in my ~/.gitconfig file:

[alias]
    marked-unchanged = !git ls-files -v &#124; grep ^[a-z]
    mu = !git ls-files -v &#124; grep ^[a-z]

Now I can use this with &quot;git marked-unchanged&quot; or &quot;git mu&quot;</description>
		<content:encoded><![CDATA[<p>I use this when working locally on some rails projects. I edit our main controller to ignore some authentication that I don&#8217;t have access to but I don&#8217;t want to commit that. I don&#8217;t want to stash away the changes, I just want git to ignore them so I don&#8217;t accidentally commit it.</p>
<p>To see a list of these I use this command:<br />
git ls-files -v | grep ^[a-z]</p>
<p>The -v on ls-files shows assume-unchanged files as lower case versions of the normal tags (-t shows uppercase no matter what) and then I grep for only lower case tags. If anyone has a better way of doing this please tell me :)</p>
<p>To make this easier to use I have an alias in my ~/.gitconfig file:</p>
<p>[alias]<br />
    marked-unchanged = !git ls-files -v | grep ^[a-z]<br />
    mu = !git ls-files -v | grep ^[a-z]</p>
<p>Now I can use this with &#8220;git marked-unchanged&#8221; or &#8220;git mu&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Chen</title>
		<link>http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/comment-page-1/#comment-941</link>
		<dc:creator>Andrew Chen</dc:creator>
		<pubDate>Tue, 28 Jul 2009 02:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://readystate4.com/2009/05/21/git-ignore-changes-in-a-working-tree-file/#comment-941</guid>
		<description>hello! How do I get ahold of you? I couldn&#039;t find an email address.

Here&#039;s my bio for more background: http://andrewchenblog.com/about/

Please write me at voodoo at gmail, thanks!

Andrew</description>
		<content:encoded><![CDATA[<p>hello! How do I get ahold of you? I couldn&#8217;t find an email address.</p>
<p>Here&#8217;s my bio for more background: <a href="http://andrewchenblog.com/about/" rel="nofollow">http://andrewchenblog.com/about/</a></p>
<p>Please write me at voodoo at gmail, thanks!</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
</channel>
</rss>
