🌿 Budding notes

These notes now at least make sense, but they're still growing and may be expanded or refined over time.

This is yet another variation of a blog by me, Clinton. I am a software engineer working and living in Bath, UK. The goal (this time) is to be somewhere between a blog and a zettelkasten where I’ll ramble, write some articles, but also share short facts, notes, and resources.

The content here is written by me (by which I mean, not AI.) I may use AI to help to plan articles but words will be my own. In fact, as an act of transparency, I’ll add Claude (or whatever) as a co-author and expressly note the input if I do use AI for anything anywhere.

[Read more]
  1. Generate SSH key with passphrase (ssh-keygen)
  2. Get keychain to remember passphrase ssh-add --apple-use-keychain --apple-load-keychain ~/.ssh/id_ed25519
  3. Tell git to use SSH for signing: git config --global gpg.format ssh
  4. Tell git about the key git config --global user.signingkey ~/.ssh/id_ed25519.pub
  5. Auto sign commits git config --global commit.gpgsign true

References

[Read more]