下载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
2023-12-06 11:32:40
下载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
下一篇:HLOCAL 初探