]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Scripts/PatchCheck.py
BaseTools/Scripts/PatchCheck.py: Do not use mailmap
[mirror_edk2.git] / BaseTools / Scripts / PatchCheck.py
index 73252ef355ff18c1a7b024f4dc6aa950dec081c0..13da6967785d45e0ab5186054f14d53682000379 100755 (executable)
@@ -647,11 +647,13 @@ class CheckGitCommits:
 \r
     def read_patch_from_git(self, commit):\r
         # Run git to get the commit patch\r
-        return self.run_git('show', '--pretty=email', '--no-textconv', commit)\r
+        return self.run_git('show', '--pretty=email', '--no-textconv',\r
+                            '--no-use-mailmap', commit)\r
 \r
     def read_committer_email_address_from_git(self, commit):\r
         # Run git to get the committer email\r
-        return self.run_git('show', '--pretty=%cn <%ce>', '--no-patch', commit)\r
+        return self.run_git('show', '--pretty=%cn <%ce>', '--no-patch',\r
+                            '--no-use-mailmap', commit)\r
 \r
     def run_git(self, *args):\r
         cmd = [ 'git' ]\r