[3/7] Revert "patch: Set dummy credentials for git notes"

Message ID 20260619072238.52120-4-amikan@ilbers.de
State New
Headers show
Series [1/7] wic: Update libs to v5.0.3 | expand

Commit Message

Anton Mikanovich June 19, 2026, 7:21 a.m. UTC
Temporary revert it to sync with OE-core.

This reverts commit 9a714f6e2023b10046e488eb65781112e840843e.
---
 meta/lib/oe/patch.py | 2 --
 1 file changed, 2 deletions(-)

Patch

diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index fcb3b5d3..35734a0d 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -468,8 +468,6 @@  class GitApplyTree(PatchTree):
         runcmd(["git", "config", "notes.rewriteMode", "ignore"], repo)
         runcmd(["git", "config", "notes.displayRef", notes_ref, notes_ref], repo)
         runcmd(["git", "config", "notes.rewriteRef", notes_ref, notes_ref], repo)
-        runcmd(["git", "config", "user.email", "isar-users@googlegroups.com"], repo)
-        runcmd(["git", "config", "user.name", "Isar"], repo)
         runcmd(["git", "notes", "--ref", notes_ref, "append", "-m", note, ref], repo)
 
     @staticmethod