GIT cancel the last commit and push

◾️ wrong commit and push to master

$ git add requirements.txt
$ git commit -m "pip freeze > requirements.txt"
$ git push origin master

◾️ cancel the last commit and push with log-history

$ git reset HEAD^
$ git push origin master -f
$ git log
commit 6f1e0ae30c3c0d0c58b78520708a431522612c4e (HEAD -> master, origin/master)
Author: cit007
Date:   Tue Mar 16 01:14:03 2021 +0900

    Create README.md

commit 70af94ecdc959cc2ba7242516b67b6bdf6b9425b (origin/article_like, article_like)
Author: cit007
Date:   Tue Mar 16 00:52:03 2021 +0900

    temp title:pinterest clone

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です