vue创建项目解除git关联
在用vue-cli创建项目时默认了git关联, 如果不想一开始就关联git, 创建项目时需要使用vue create AppName -ngit 远程关联的一些命令:查看远程分支路径git remote -v解除远程关联git remote remove origin添加远程关联git remote add origin https://xxxxxxx/helloworld.git...
·
在用vue-cli创建项目时默认了git关联, 如果不想一开始就关联git, 创建项目时需要使用
vue create AppName -n
git 远程关联的一些命令:
- 查看远程分支路径
git remote -v - 解除远程关联
git remote remove origin - 添加远程关联
git remote add origin https://xxxxxxx/helloworld.git
更多推荐
所有评论(0)