下载gitlab上的代码:

git clone ssh://git@47.xx.xx.xx:4xx/xxx.git

查看git代码状态:

git status

不提交的代码文件:

git checkout  文件路径

将代码添加到工作区:

git add .

提交本地仓库:

git commit -m '备注'

拉取远程仓库的代码:

git pull 

提交到远程仓库:

git push origin master

posted on 2019-02-28 11:51  毛会懂  阅读(94)  评论(0编辑  收藏  举报