<?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>Ivan Zlatev &#187; MSysGit</title>
	<atom:link href="http://ivanz.com/tag/msysgit/feed/" rel="self" type="application/rss+xml" />
	<link>http://ivanz.com</link>
	<description></description>
	<lastBuildDate>Sat, 05 Jun 2010 16:19:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>msysGit Tip: Files Constantly Reported as Modified Fix</title>
		<link>http://ivanz.com/2009/07/18/msysgit-tip-files-constantly-reported-as-modified-fix/</link>
		<comments>http://ivanz.com/2009/07/18/msysgit-tip-files-constantly-reported-as-modified-fix/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 01:43:10 +0000</pubDate>
		<dc:creator>Ivan Zlatev</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[MSysGit]]></category>

		<guid isPermaLink="false">http://i-nz.net/?p=665</guid>
		<description><![CDATA[I copied my Mono mcs Git working copy from Linux to Windows for use with MSysGit only to find out that even after git reset &#8211;hard almost all files were being reported as modified by git status. It turns out it has to do with the file permissions (executable bit I think) and the inability [...]]]></description>
			<content:encoded><![CDATA[<p>I copied my Mono mcs Git working copy from Linux to Windows for use with MSysGit only to find out that even after <em>git reset &#8211;hard</em> almost all files were being reported as modified by <em>git status</em>. It turns out it has to do with the file permissions (executable bit I think) and the inability of msysgit to apply them on Windows.</p>
<pre>$ git diff class/Accessibility/makefile.build
diff --git a/class/Accessibility/makefile.build b/class/Accessibility/makefile
old mode 100755
new mode 100644</pre>
<p>The fix is to make git ignore some file mode stuff via:</p>
<pre>git config core.fileMode false</pre>
<p>Another useful setting on Windows is:</p>
<pre>git config core.autocrlf true</pre>
]]></content:encoded>
			<wfw:commentRss>http://ivanz.com/2009/07/18/msysgit-tip-files-constantly-reported-as-modified-fix/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
