summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-07-30 14:59:04 +0100
committerNaz <ndpm13@ch-naseem.com>2025-07-30 14:59:04 +0100
commita733ad8c4197d93ac9f321c979ba659960cec078 (patch)
tree59c5e64169f4f89f78800cd99655dfa730cab237
parent898355e0083b4ecd03ee7ca422d460bbbc2c2465 (diff)
✨feat: add GPG signing to git config snippet
-rw-r--r--snippets/global.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/snippets/global.json b/snippets/global.json
index 027921b..32f9ccd 100644
--- a/snippets/global.json
+++ b/snippets/global.json
@@ -1,7 +1,14 @@
{
"Naz's git config": {
"prefix": "gitnaz",
- "body": ["[user]", " name = Naz", " email = ndpm13@ch-naseem.com"],
+ "body": [
+ "[user]",
+ " name = Naz",
+ " email = ndpm13@ch-naseem.com",
+ " signingkey = 42508039D5D91EF2B88946A39E78923117CD6639",
+ "[commit]",
+ " gpgsign = true"
+ ],
"description": "Naz's git config"
}
}