Answers for "squash commits on branch"

3

squash commits in remote branch

$ 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
Posted by: Guest on May-28-2020
0

squash commits on branch

git rebase -i HEAD~20
Posted by: Guest on April-04-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language