GitLab使用

1.上传本地修改代码至缓存区
git add *
git commit -m "提交内容描述"

2.拉取远程仓库并与本地合并

git pull origin master

3.上传合并后的内容至远程仓库

git push origin master

4.从远程仓库克隆

git clone 地址

举例:git clone https://gitee.com/what_about_you_tee/TestPage

 

 

你可能感兴趣的:(版本管理工具,git,gitlab)