Answers for "squash merge branch commits"

-2

squash commits on branch

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

merge / or squash /or combine multiple commits easily

# you are in a branch2 which has multiple commits which you want to combine into 1 
and merge into branch1

git rebase <branch_to_merge_into> -i

pick and squash the commits you want
Posted by: Guest on April-07-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language