Vue cli搭建本地项目:https://www.cnblogs.com/zuiyue_jing/p/10673903.html
1.创建你的项目
安装node,git
码云上创建仓库,配置公钥,上传和下载代码就不需要输入密码。windows在gitbash相当于运行linux命令,
本地仓库与线上仓库关联
线上仓库的项目clone到本地 git clone ssh代码
创建vue项目
vue init webpack 你的项目
2.将本地文件同步线上:
git status:查看本地文件的更新状态
git add . :将文件添加到git缓冲区
git commit -m "project initialize" :windows用双引号,linux是单引号
git push: 上传
原文:https://www.cnblogs.com/tengteng0520/p/12656023.html