commit dca675ef18dce904c2f6cd0fc5378dc282553416 parent eac840c1f30129296340e2bdca5e9f6339a730c4 Author: Giovanni Amaral <giovanni@giovanniamaral.com> Date: Sat, 8 Aug 2026 12:40:59 -0300 Add git-credential-pass Diffstat:
| M | .config/git/config | | | 2 | ++ |
| A | .local/bin/git-credential-pass | | | 5 | +++++ |
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/.config/git/config b/.config/git/config @@ -10,3 +10,5 @@ smtpServer = mail.giovanniamaral.com smtpServerPort = 465 smtpEncryption = ssl +[credential "smtp://mail.giovanniamaral.com:465"] + helper = pass diff --git a/.local/bin/git-credential-pass b/.local/bin/git-credential-pass @@ -0,0 +1,5 @@ +#!/bin/sh + +[ "$1" = get ] || exit 0 + +echo "password=$(pass giovanni@giovanniamaral.com)"