关于前端vsCode的gitee管理
无论是学习项目还是企业项目,我们都需要进行项目管理方便回退
- 在码云上创建一个简单的项目仓库
- 复制项目http地址
- 在vsCode上初始化
git init
git add .
git commit -m "first"
4.项目连接
git remote add origin +项目地址
5.假如已经链接上了其他项目
git remote remove origin
删除连接后再次连接
6.推送项目
git push
无论是学习项目还是企业项目,我们都需要进行项目管理方便回退
git init
git add .
git commit -m "first"
git remote add origin +项目地址
git remote remove origin
git push