Home
last modified time | relevance | path

Searched refs:commitemail (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dpatch.py301 self.commitemail = d.getVar('PATCH_GIT_USER_EMAIL')
406 def gitCommandUserOptions(cmd, commituser=None, commitemail=None, d=None): argument
409 commitemail = d.getVar('PATCH_GIT_USER_EMAIL')
412 if commitemail:
413 cmd += ['-c', 'user.email="%s"' % commitemail]
416 def prepareCommit(patchfile, commituser=None, commitemail=None): argument
452 GitApplyTree.gitCommandUserOptions(cmd, commituser, commitemail)
537 self.gitCommandUserOptions(shellcmd, self.commituser, self.commitemail)
568 … (tmpfile, shellcmd) = self.prepareCommit(patch['file'], self.commituser, self.commitemail)