Git生成SSH金鑰
阿新 • • 發佈:2022-05-17
1. 配置使用者名稱
git config --global user.name "xiexie"
2. 配置郵箱
git config --global user.email "[email protected]"
此時,會在C:\Users\Administrator目錄下生成.gitconfig配置檔案
3. 生成公鑰和私鑰
ssh-keygen -t rsa -C "[email protected]"
按3次Enter,不需要設定名稱與密碼
# 檢視公鑰 cat ~/.ssh/id_rsa.pub
路徑是C:\Users\Administrator\.ssh
4. tx-coding配置個人公鑰
# // 建立新的 SSH 私鑰與公鑰祕鑰對,輸入你的郵箱作為標籤 ssh-keygen -m PEM -t ed25519 -C "[email protected]" # // 推薦使用預設地址 Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] # // 此處直接回車即可;若設定密碼,則每次使用 SSH 方式推送程式碼時都會要求輸入密碼 Enter passphrase (empty for no passphrase):
開啟上文中生成的祕鑰對的地址(通常為 ~/.ssh/)找到字尾為 pub 的公鑰檔案,使用 cat 命令輸出所有內容並複製。
完成後,在本地執行首次連線時的公鑰認證命令: ssh -T [email protected]