一、上传本地项目到gitlab:
二、检出git上的项目到本地
1 在本地新建一个文件夹
2 右键选择选择"Git Bash Here"
3 git init
4 git remote add origin <项目地址>
5 git clone <项目地址>
三、从服务器更新本地项目
git pull origin master
四、上传本地的修改
git add .
git commit -m “***”
git push origin master
一、上传本地项目到gitlab:
二、检出git上的项目到本地
1 在本地新建一个文件夹
2 右键选择选择"Git Bash Here"
3 git init
4 git remote add origin <项目地址>
5 git clone <项目地址>
三、从服务器更新本地项目
git pull origin master
四、上传本地的修改
git add .
git commit -m “***”
git push origin master