git笔记(二)

SSH Key 生成

打开Git Bash在其中输入如下命令,一路回车。

ssh-keygen -t rsa -C "[email protected]"

● 在c盘,当前用户文件夹下,有个.ssh 文件夹,在里边 找到 id_rsa.pub文件,用记事本打开,复制其中的全部内容。
● 登陆你的GitHub账户,依次点击Account Settings > SSH Public Keys > Add another public key,把id_rsa.pub中的内容拷贝进去 。

测试与GitHub的通信

在Git Bash中输入如下命令后,出现如下提示信息说明ssh正常。

ssh -T [email protected]
/*
Hi wblong! You've successfully authenticated, 
but GitHub does not provide shell access.
*/

如果提示 Host key verification failed
输入如下命令

ssh-keyscan -t rsa github.com > ~/.ssh/known_hosts

配置全局用户名及Email

git config --global user.name  'wblong'
git config --global user.email  [email protected]

你可能感兴趣的:(git笔记(二))