Bootstrap

git撤回push

1、git log 查看提交记录
2、git reset --soft <版本号>
重置至指定版本的提交
可通过git log再次查看提交记录,确认是否撤回
注:git reset --soft <版本号>命令只会退回本地提交记录,远程此时还未撤回
3、git push <remotename> <commit SHA>:<remotebranchname> --force

  • <remotename> 远程仓库名,默认为origin
  • <commit SHA> 提交的唯一码
  • <remotebranchname> 远程分支名

将指定commit记录push至远程,完成撤回远程push记录。

;