“Удалить последний разжигание” Ответ

Отменить коммит, не подталкиваемый

git reset --soft HEAD~
Average Joe

git удалить последний коммит после толчка

git reset --hard HEAD~1
git push -f <remote> <branch>
Modern Mantis

git удалить местный коммит

git reset --hard origin/<branch_name>
Lazy Loris

git delete topled Commit

git reset --hard <last_working_commit_id>

git push --force
QuackAttack69

git удалить коммиты из ветви после толчка

git reset --hard <last_working_commit_id>
So we must not reset to the commit_id that we don't want.

Then sure, we must push to remote branch:

git push --force
Arrogant Addax

Удалить последний разжигание

$ git reset <previous label or sha1>
$ git commit -am "blabla"                    <--- optional
$ git push -f <remote-name> <branch-name>    
Testy Turtle

Ответы похожие на “Удалить последний разжигание”

Вопросы похожие на “Удалить последний разжигание”

Больше похожих ответов на “Удалить последний разжигание” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования