天天看点

git更新上传仓库

在项目的根目录下运行

git更新上传仓库

输入

git status

如果显示有需要提交的

git add .

git commit -m “add files”

再次执行

git status

然后在项目的根目录中执行

git remote add origin https://gitee.com/liu-feng-liu-feng/vue_shop.git(项目仓库的地址)

git push -u origin master