本地生成 ssh key

2022-09-07 05:36:15 字數 500 閱讀 2775

1. 配置git使用者名稱和郵箱

git config user.name "使用者名稱"

git config user.email "郵箱"

需要修改時

git config --global user.name "使用者名稱"

git config --global user.email "郵箱"

查詢 git 本地配置

git config --global -l  

2. 生成ssh key

ssh-keygen -t rsa -c "郵箱"

如果報  

fatal: not in a git directory, 是因為沒有將當前目錄作為git目錄。

先執行命令 git init 。再執行上面的

如果使用的是gitlab, 將 生成的id_rsa 複製到 settings 的ssh 中就可以了

管理本地多個SSH Key

有的時候,不僅github使用ssh key,工作專案或者其他平台可能也需要使用ssh key來認證,如果每次都覆蓋了原來的id rsa檔案,那麼之前的認證就會失效。這個問題我們可以通過在 ssh目錄下增加config檔案來解決。下面以配置github的ssh key為例。1.生成ssh key時同...

本地配置多個ssh key

大多數時候,我們的機器上會有很多的git host,比如公司gitlab github oschina等,那我們就需要在本地配置多個ssh key,使得不同的host能使用不同的ssh key 做法如下 以公司gitlab和github為例 為公司生成一對秘鑰ssh key ssh keygen t...

檢視和生成SSH Key

mac版本 step1 檢視是否已存在 終端輸入 ls al ssh如果提示no such file or directory,則說明沒有,需要新生成 如果出現 id rsa id rsa.pub兩個檔案,說明已經有了,直接通過step4檢視 step2 新生成 終端輸入 ssh keygen t ...