## 注册github账号
## 安装Git Bash,一路默认安装
附git简明指南网站 http://www.runoob.com/manual/git-guide/
## 在本地创建一个ssh key
$ ssh-keygen -t rsa -C "your e-mail address" 引号中填入github注册的邮箱
## 找到密钥,地址上面有显示,找到后用记事本显示出来
## GitHub添加密钥
settings→SSH and GPG keys→New SSH key(右上角)
title随便写就可以了
## Git Bash下输入命令
ssh –T git@github.com
然后yes
然后
$ git config --global user.name “your name” 引号中github的昵称
$ git config --global user.email “your e-mail address” 引号中github绑定邮箱
## 继续
$ cd /G 打开G盘,可以随意选择自己需要的盘
$ git clone https://github.com/github的账户名/项目名.git
即截图中1为github的账户名,2为项目名
中途可能要求你输入邮箱及密码
## continue
此时G盘已有相应文件夹,终于OK了!