标签:基本 stat use 克隆 git pull comm out oba user
git配置用户邮箱和用户名:
git config --global user.email "xx@xx.com"
git config --global user.name "xx"
克隆远程代码:git clone ssh://git@xxxxxxxxxx
创建本地develop分支:git checkout -b develop
同步代码:git pull origin develop
获取本地全部修改:git status
比较差异:git diff
提交到本地仓库:git commit -a -m "xxx"
提交到远程仓库:git push origin develop
标签:基本 stat use 克隆 git pull comm out oba user
原文地址:https://www.cnblogs.com/avalon-merlin/p/9197681.html