I found this question to search for the copyfile
tag and after searching in the source code I found this in repo/manifest_xml.py
def _ParseCopyFile(self, project, node): src = self._reqatt(node, 'src') dest = self._reqatt(node, 'dest') if not self.IsMirror:
therefore, <copyfile>
copies the file from this project to the file, as described in the dest
attribute (but relative to the top of the tree).
source share