如何使用git 拉取pull项目以及push项目

在项目文件夹内,shift+右键,打开git

拉项目

指令:
git pull

推项目 push

指令:
git add .
git commit -m “备注文字"
git push

你可能感兴趣的:(git,vue.js,前端)