1. 在github创建一个repository
2. 将HTTPS 复制下来
3. 在项目文件夹右键 git bash here :
第一次上传:
设置username和email
$ git config --global user.name “name”
$ git config --global user.email “xxxx@email.com”
关联github
$ git clone email-address
查看状态
$ git status
传到本地
$ git add .
$ git commit -m ‘name’
上传至github
$ git push
查看地址
git remote -v
添加地址
git remote add origin github