What changed, and why it matters
This commit only changes a Git configuration file (.gitmodules) to hide uncommitted changes inside the translation submodule from the main project's status display. It does not modify Electrum's actual code, wallet logic, network handling, or any user-facing behavior. There is no security relevance.
No security action needed. Treat as a normal repository-maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adds ignore = dirty to the [submodule "electrum/locale"] section of .gitmodules and adjusts whitespace on the url line. This tells Git to stop reporting tracked-but-modified files inside the locale submodule as changes in the parent repository’s git status. It is a developer convenience change with no effect on runtime behavior, build artifacts, or security boundaries.
Changed components
.gitmodulesInspect captured patch +2 / −1
diff --git a/.gitmodules b/.gitmodules
index 7bc6f66..bbb149f 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,7 @@
[submodule "electrum/locale"]
path = electrum/locale
- url = https://github.com/spesmilo/electrum-locale
+ url = https://github.com/spesmilo/electrum-locale
+ ignore = dirty
[submodule "electrum/plugins/keepkey/keepkeylib"]
path = electrum/plugins/keepkey/keepkeylib
url = https://github.com/spesmilo/electrum-keepkeylib.git
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.