Code

[git] 원격 서버(github)에 push한 커밋 취소 방법

codens 2023. 11. 4. 05:15


작업 흐름 : 로컬에서 이전으로 리셋후, 원격에 강제로  push한다.

 

//-------------------------------------
github remote server pushed commit how to cancel

> git reset --hard <previous label or sha1>

> git commit -am "blabla"

> git push -f <remote-name> <branch-name>


//-------------------------------------
// 참고
How can I undo pushed commits using git?
https://stackoverflow.com/questions/22682870/how-can-i-undo-pushed-commits-using-git


반응형