Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fogcreek overlay: ignore .kbf directory with standins for kbfiles

Changeset a4be4ae63f46

Parent 3b6efcbbe907

by David Golub

Changes to one file · Browse files at a4be4ae63f46 Showing diff from parent 3b6efcbbe907 Diff from another changeset...

 
83
84
85
86
 
87
88
 
89
90
91
 
83
84
85
 
86
87
 
88
89
90
91
@@ -83,9 +83,9 @@
  {   std::string p = cur.path;   p.push_back('\\'); - if (p.find("\\.hg\\") != std::string::npos) + if (p.find("\\.hg\\") != std::string::npos || p.find("\\.kbf\\") != std::string::npos)   { - // ignore files and dirs named '.hg' + // ignore files and dirs named '.hg' or '.kbf'   last = cur;   return 0;   }