1、执行git reflog
命令查看历史变更记录;
2、git reset --hard xxx(拉代码之前的提交记录)
git push -f 强推代码到远程仓库(慎用!)
日常操作:
上传本地代码:
git add .
git commit -m ' '
git pull
git push
拉取最新代码:
直接git pull
1、执行git reflog
命令查看历史变更记录;
2、git reset --hard xxx(拉代码之前的提交记录)
git push -f 强推代码到远程仓库(慎用!)
日常操作:
上传本地代码:
git add .
git commit -m ' '
git pull
git push
拉取最新代码:
直接git pull