git _______ can be used to combine the changes made on two different branches without creating a new commit.

  • merge
  • squash
  • rebase
  • commit
Git rebase allows you to incorporate changes from one branch into another by applying each commit on the branch to the target branch. Unlike merge, it allows for a cleaner commit history by avoiding unnecessary merge commits.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *