gitignore: Add generated files to gitignore
What changed, and why it matters
This commit only updates Git ignore lists to exclude automatically generated build artifacts from version control. It does not change any executable code, configuration defaults, or security behavior.
No security action needed. Treat as routine repository hygiene.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adds libcommon.a to the top-level .gitignore and adds convert-gossmap and features to devtools/.gitignore. These are build outputs or generated helper binaries. There are no source-code modifications, no cryptographic changes, no protocol changes, and no bug fixes.
Changed components
.gitignoredevtools/.gitignoreInspect captured patch +3 / −1
diff --git a/.gitignore b/.gitignore
index d90ccc95..c2716814 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,7 +56,6 @@ contrib/pyln-*/pyln/*/__version__.py
tests/plugins/test_selfdisable_after_getmanifest
# Ignore generated files
-devtools/features
doc/schemas/sql.json
doc/*.7.md
doc/*.[1578]
@@ -72,6 +71,7 @@ tests/primitives_pb2_grpc.py
tests/autogenerate-examples-status.log
tests/autogenerate-examples.json
tests/autogenerate-examples-repeat.log
+libcommon.a
# Ignore unrelated stuff
.DS_Store
diff --git a/devtools/.gitignore b/devtools/.gitignore
index 0266f115..87e4e0b8 100644
--- a/devtools/.gitignore
+++ b/devtools/.gitignore
@@ -21,3 +21,5 @@ fp16
rune
gossmap-compress
bip137-verifysignature
+convert-gossmap
+features
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.