Skip to content

Instantly share code, notes, and snippets.

View paolocarrasco's full-sized avatar
🙌
Let's make development with quality again!

Paolo Carrasco paolocarrasco

🙌
Let's make development with quality again!
View GitHub Profile
@paolocarrasco
paolocarrasco / app.html
Created January 25, 2017 07:15 — forked from jdanyow/app.html
Minimum Aurelia with no build system
<template>
<h1>${message}</h1>
</template>
@paolocarrasco
paolocarrasco / git-auto-sign-commits.sh
Last active October 11, 2022 11:44 — forked from mort3za/git-auto-sign-commits.sh
Auto sign your git commits
# Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands)
gpg --gen-key
# maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null`
# check current keys:
gpg --list-secret-keys --keyid-format LONG
# Set a gpg key for git (from previous step... the key_id is after the slash):
git config --global user.signingkey your_key_id