标签:mail 文件内容 comment https tor xxx .com 打开 window
上传代码到远程仓库的时候需要秘钥进行验证是否本人上传的。打开Git目录下的Git Bash
输入ssh-keygen,回车
回到git bash,输入
ssh -T git@git.oschina.net
如果显示 ‘Welcome to Git@OSC, your username!‘,则表示成功
查看当前的remote url,可以看到是使用https协议进行访问的
git remote -v
orgin https://github.com/xxx/xxx.git(fetch)
orgin https://github.com/xxx/xxx.git(push)
调整url,使用项目的ssh url
git remote set-url origin git@github.com:xxx/xxx.git
标签:mail 文件内容 comment https tor xxx .com 打开 window
原文地址:http://www.cnblogs.com/lidabo/p/7458004.html