第一步: 在github创建仓库,创建完成进入该仓库,仓库地址如:https://github.com/winerss/wcMall格式
第二步:使用git,cd到本地项目目录下,执行git明令:
git init
第三步:将项目的所有文件添加到仓库中
git add . (add后面空格)
第四步: 将add的文件commit到仓库
git commit -m "注释语句"
第五步:将本地仓库关联到github上
git remote add origin https://github.com/winerss/wcMall.git
第六步:执行pull操作
git pull origin master
第七步,上传代码到github远程仓库
git push -u origin master