Git 退回指定的一次提交

git reset --hard <識別碼>

這時候github類的雲端還會有 <識別碼> 之後提交的記錄, 如果你都想清空,把當前當作最新提交,即某個分支的最新提交,可執行以下

git push origin <branch-name> --force

如果你只有一個分支或者main 就是執行

git push origin main --force