Open2025/01/06にコメント追加3SSH用の秘密鍵を作成するコマンドtorohash2024/10/29毎回忘れるので書いとく ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 返信を追加torohash2024/10/29公開鍵コピペ用 cat ~/.ssh/id_rsa.pub 返信を追加torohash2025/01/06秘密鍵生成、こっちのがいいらしい ssh-keygen -t ed25519 -C "your_email@example.com" 秘密鍵: ~/.ssh/id_ed25519 公開鍵: ~/.ssh/id_ed25519.pub 返信を追加
torohash2025/01/06秘密鍵生成、こっちのがいいらしい ssh-keygen -t ed25519 -C "your_email@example.com" 秘密鍵: ~/.ssh/id_ed25519 公開鍵: ~/.ssh/id_ed25519.pub 返信を追加