-
ssh连接
- 设置用户
- git config --global user.name ""
- git config --global user.email ""
- 本地创建git项目
- 生成ssh.命令 ssh-keygen -C "email"
-
将生成的id_rsa.pub里面的内容复制到github的add ssh中
- 验证:ssh -T git@github.com,出现....
you have successfully authenticated...
- 设置用户
-
远程连接
-
git init
-
git remote add origin git@github:username/projectname.git
- git push -u origin master
-
- 远程克隆
- git clone git@github:username/projectname.git
配置出现的问题