Answers for "squash pushed commits"

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
1

squash pushed commits

git rebase -i origin/master~4 master
git push origin +master
Posted by: Guest on October-08-2020
0

git merge pushed commits

git push origin +master
Posted by: Guest on March-03-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language