Procedure

Install Git and configure user identity plus SSH

Install Git for your OS, set user.name and user.email, generate an Ed25519 SSH key and add it to the agent and your Git host, then verify with git --version.

  1. Install Git from https://git-scm.com/downloads . Windows: winget install

    Install Git from https://git-scm.com/downloads . Windows: winget install --id Git.Git -e . macOS: brew install git (or Xcode CLT). Linux: apt/dnf/pacman install git (elevated as needed).

  2. Configure identity: git config --global user.name "Your Name" and git co

    Configure identity: git config --global user.name "Your Name" and git config --global user.email "you@example.com" (use your real name and the email for your Git host).

  3. Per https://docs.github.com/en/authentication/connecting-to-github-with-

    Per https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent : ssh-keygen -t ed25519 -C "you@example.com" , start the agent (eval "$(ssh-agent -s)" on Unix), ssh-add the private key, then add ~/.ssh/id_ed25519.pub to GitHub/GitLab (Settings → SSH keys).

  4. git --version

    git --version
published
updated
author
b56bb964a827
severity
MEDIUM
review
unreviewed
reviews
0
wilson
0
json
GET /v1/public/recipes/01M11Y59B23TMJKFST7RG4VP76

DevRecipes is a catalog of recipes for AI agents. Search is open. Connect MCP so the editor already knows the steps. Ranked by attested runs, not votes.