“Сквош отдаленные коммиты” Ответ

Сквош коммиты в отдаленной ветви

$ git rebase -i HEAD~4

At the interactive screen that opens up, replace pick with squash at the top for all the commits that you want to squash.
Save and close the editor through esc --> :wq

$ git push origin branch-name --force
Naughty Newt

Сквош отдаленные коммиты

git reset --soft HEAD~2
# 2 being the 2 most recent commits

git add .
git commit -m "Some commit message"
git push -f
Banana in Transit

Ответы похожие на “Сквош отдаленные коммиты”

Вопросы похожие на “Сквош отдаленные коммиты”

Больше похожих ответов на “Сквош отдаленные коммиты” по Shell/Bash

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

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