检出代码步骤
检出
git clone https://gitee.com/hztangsheng/study.git
查看状态
git status
更新
git pull <远程主机名><远程分支名>
例如:
git pull origin master
本地提交
git commit -m '提交说明'
远程提交
git push <远程主机名><远程分支名>
git clone https://gitee.com/hztangsheng/study.git
git status
git pull <远程主机名><远程分支名>
例如:
git pull origin master
git commit -m '提交说明'
git push <远程主机名><远程分支名>