(self, git_mode, relPath, contents)
| 1653 | self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes()) |
| 1654 | |
| 1655 | def processContent(self, git_mode, relPath, contents): |
| 1656 | if relPath == '.gitattributes': |
| 1657 | self.baseGitAttributes = contents |
| 1658 | return (git_mode, self.generateGitAttributes()) |
| 1659 | else: |
| 1660 | return LargeFileSystem.processContent(self, git_mode, relPath, contents) |
| 1661 | |
| 1662 | |
| 1663 | class Command: |
no test coverage detected