gi常用命令
git提交代码流程
git status 检查当前代码和主支代码不同的状态
git diff 可指定文件查看这个文件修改的内容
git add . 把自己所有修改的代码提交
git commit 提交并注释修改内容
git pull 将线上的代码下载到自己这里,再次debug,防止代码冲突
git push origin master 将代码合并到线上主仓库中
git log |grep 361ab 查找对应版本号全称
git reset --hard 361ab98047d51c569 强制回退到某个版本
git push origin qa --force 更新远端
哔哔叭哔哄