Git SSH Configuration Guide
Nov 19, 2023
Git SSH Configuration Guide # This guide is designed to help you configure local Git environment for your Socity account using Ed25519 SSH keys, without interfering with your existing GitHub account configurations. Step 1: Generate SSH Key for Socity Account # Generate a new SSH key specifically for your Socity account: ssh-keygen -t ed25519 -C "your_email@socitydao.org" When prompted, save the key to a specific path, for example: ~/.ssh/id_ed25519_socity Step 2: Add SSH Key to ssh-agent # Start the ssh-agent and add your new key: ...