“Squash Remote Commits” Réponses codées

Squash s'engage dans la branche éloignée

$ 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 Commits

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

Réponses similaires à “Squash Remote Commits”

Questions similaires à “Squash Remote Commits”

Plus de réponses similaires à “Squash Remote Commits” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code