1.注册github。网址www.github.com,默认注册
2.下载安装git客户端。网址https://git-scm.com/downloads/,默认安装
3.打开git bash
4.配置用户名(github的用户名)
git config --global user.name yourusername
5.配置邮箱(github用的邮箱)
git config --global user.email youremail
6.检查有没有生成过key
cd ~/.ssh
打印“bash: cd: /c/Users/dodolo/.ssh: No such file or directory”
7.生成公钥
ssh-keygen -t rsa -C "yourmailadress"
8.从生成过程中可以看到.ssh目录所在位置,打开其中的id_rsa.pub文件,复制内容
9.打开https://github.com/settings/keys,添加SSH Key,将id_rsa.pub的内容黏贴上去
10.回到git bash,测试连接。
ssh -T git@github.com
打印 hi username!成功
11.添加远程仓库
git remote add origin git@github.com:yourname/yourproject
失败,打印:fatal: Not a git repository (or any of the parent directories): .git
12.初始化
git init
完成后再执行11,成功
13.查看状态
git status
14.cd 目录名(想让项目保存的目录)
15.获取github上的项目代码
git clone git@github.com:yourname/yourproject.git