# git clone with SSH keys [TOC] ###### tags: `Git` `ssh key` --- * >ssh-keygen -t rsa -b 4096 -C "shawn90830410577031@gmail.com" * [macbook怎么找到.ssh文件下id_rsa.pub ](https://blog.csdn.net/qq_38658877/article/details/97612820) * [Git 踩坑紀錄(二)git clone with SSH keys ](https://tsengbatty.medium.com/git-%E8%B8%A9%E5%9D%91%E7%B4%80%E9%8C%84-%E4%BA%8C-git-clone-with-ssh-keys-%E6%88%96-https-%E8%A8%AD%E5%AE%9A%E6%AD%A5%E9%A9%9F-bdb721bd7cf2#:~:text=%E7%99%BD%E8%A9%B1%E4%B8%80%E9%BB%9E%E8%AA%AA%EF%BC%8C%E5%B0%B1%E6%98%AF%E6%8A%8A,%E9%96%8B%E6%BA%90%E7%9A%84%E5%B0%88%E6%A1%88%E5%8E%9F%E5%A7%8B%E7%A2%BC%E3%80%82&text=%E5%86%8D%E8%A4%87%E8%A3%BD%E5%89%9B%E5%89%9B%E7%94%A2%E7%94%9F%E7%9A%84,%E8%87%AA%E5%B7%B1%E7%9C%8B%E5%BE%97%E6%87%82%E5%B0%B1%E8%A1%8C%E3%80%82) * [gitbook cli](https://www.onejar99.com/gitbook-building-and-publishing-free-unlimitedly/) ---- ### cmd 紀錄 ![](https://i.imgur.com/KjGJYd6.png) ---- ### 發 pr(pull request) [高品質 發 pr](https://blog.wu-boy.com/2021/10/how-to-write-high-quality-pull-request/) ssh-keygen -t rsa -C "shawn.tseng@pivoterra.co" git config credential.email "shawn90830410577031@gmail.com" git config --global user.email "shawn90830410577031@gmail.com" git config user.email youremail@yourdomain.com git config user.email "shawn.tseng@pivoterra.co" git config --global user.email "shawn@ewetechnology.com" git config --global user.name "shawnoct90830" git config --global user.name "shawn" git config --global user.email "shawn.tseng@pivoterra.co" git config --global user.email "shawn90830410577031@gmail.com" git config --global user.email "YOUR_EMAIL" ssh-add Users/chenyifen/.ssh/id_rsa ssh-keygen -t ed25519 -C "shawn@ewetechnology.com" git config --global user.email git config --global user.email "shawninvest90830@gmail.com" ssh-keygen -t ed25519 -C "shawn90830410577031@gmail.com" ssh-keygen -t ed25519 -C "shawn.tseng@pivoterra.co" octavius07