# github ssh設定 ###### tags: `github` `git` 1. ssh共通鍵作成 ```shell= ssh-keygen -t ed25519 -C "github-email" -f ~/.ssh/your_key_name ``` 2. 鍵追加(PC) ```shell= ssh-add ~/.ssh/<file_name> ``` 3. 鍵の公開鍵をgithubのユーザー設定で追加 4. 接続認証 ```shell= ssh -T git@github.com ```