(self, relPath)
| 1649 | self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes()) |
| 1650 | |
| 1651 | def removeLargeFile(self, relPath): |
| 1652 | LargeFileSystem.removeLargeFile(self, relPath) |
| 1653 | self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes()) |
| 1654 | |
| 1655 | def processContent(self, git_mode, relPath, contents): |
| 1656 | if relPath == '.gitattributes': |
no test coverage detected