You're working on a team project, and your feature branch diverged significantly from the main branch. Which Git command would you use to integrate your changes without creating a messy merge history?

  • git merge --no-ff
  • git merge --squash
  • git pull --rebase
  • git rebase
The correct Git command to integrate changes from a diverged feature branch without creating a messy merge history is git rebase. It helps maintain a linear and cleaner history by incorporating the changes on top of the main branch.
Add your answer
Loading...

Leave a comment

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