1. 程式人生 > >git多賬號配置

git多賬號配置

  • 切換到~/.ssh目錄下,執行命令
cd ~/.ssh
ssh-keygen -t rsa -C "[email protected]"

  • 拷貝生成的公鑰檔案(shenma_git_rsa.pub)內容,放到gitlab上的SSH Keys下面

  • 編輯~/.ssh目錄下的config檔案,按如下格式配置(IdentityFile配置私鑰檔案)
vim config
  Host 139.224.234.108
  HostName gitlab.shenmajr.com
  User chuanyun.zhao
  IdentityFile ~/.ssh/shenma_git_rsa
  • 執行git clone命令測試配置有無生效(生效後會在~/.ssh資料夾下的known_hosts檔案新增記錄)