Earlyuan 2018-07-06
$ git branch
$ git pull origin master
$ git checkout -b yangbin-0706
$ git branch
-- -- -- -- -- -- -- -- --
git init // 初始化版本库
git add . // 添加文件到版本库(只是添加到缓存区),.代表添加文件夹下所有文件
git commit -m "first commit" // 把添加的文件提交到版本库,并填写提交备注
git remote add origin 你的远程库地址 // 把本地库与远程库关联
git push origin master // 第一次推送后,直接使用该命令即可推送修改