fetcher git: add exclude rules for temporary MS Office files

This commit is contained in:
Hylke Bons 2011-10-23 13:39:00 +01:00
parent e25105c58b
commit 877aff9548

View file

@ -214,6 +214,12 @@ namespace SparkleLib {
writer.WriteLine ("Thumbs.db");
writer.WriteLine ("Desktop.ini");
// MS Office
writer.WriteLine ("~*.tmp");
writer.WriteLine ("~*.TMP");
writer.WriteLine ("*~*.tmp");
writer.WriteLine ("*~*.TMP");
// CVS
writer.WriteLine ("*/CVS/*");
writer.WriteLine (".cvsignore");