yarn install
yarn run serve
yarn run build
yarn run test
yarn run lint
###项目概述 1、技术vue+elementui+axios 2、总体来说 前端做的东西较多
然后,再关联GitHub的远程库:git remote add github [email protected]:chloneda/demo.git 然后,再关联码云的远程库:git remote add gitee [email protected]:chloneda/demo.git
git remote -v查看远程库信息:
gitee [email protected]:chloneda/demo.git (fetch)
gitee [email protected]:chloneda/demo.git (push)
github [email protected]:chloneda/demo.git (fetch)
github [email protected]:chloneda/demo.git (push)
可以看到两个远程库,说明配置生效了
git add .
git commit -m "update"
git push github master
git push gitee master
# 从github拉取更新
git pull github
# 从gitee拉取更新
git pull gitee