github配置ssh

git命令窗口输入

$ git config --global user.name "wangan058"
$ git config --global user.email "[email protected]"
$ ssh-keygen -t rsa -C "[email protected]"

然后生成一个C:\Users\annkee(你的用户目录)\.ssh路径,打开id_rsa.pub文件,复制全部粘贴到远端的github上的ssh key 里面。

测试:
$ ssh -T [email protected]

出现:Hi annkee! You've successfully authenticated, but GitHub does not provide shell access.sh 说明正常

在你init过的路径下进入“.git目录”,打开“config”文件,修改url为:

url = [email protected]:annkee/mobile-scm.git
fetch = +refs/heads/*:refs/remotes/origin/*

https://github.com/ 替换为 [email protected]: 就行了

你可能感兴趣的:(github配置ssh)