1. git init 初始化
2.git add .
3.git commit -m “注释内容”
4. 创建github仓库 New repository,
5,关联github仓库,获取到github仓库地址后,将本地仓库与github仓库关联
git remote add origin http://github.com/husanfeng/vue-components-web.git
6.上传本地项目:
git push -u origin master
7,刷新github 仓库