“Squash Remote berkomitmen” Kode Jawaban

Squash berkomitmen di cabang terpencil

$ 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

Squash Remote berkomitmen

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

Jawaban yang mirip dengan “Squash Remote berkomitmen”

Pertanyaan yang mirip dengan “Squash Remote berkomitmen”

Lebih banyak jawaban terkait untuk “Squash Remote berkomitmen” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya