A developer is working on a feature in a separate branch and needs to incorporate updates made in the main branch. What Git process should they use?

  • Merge
  • Rebase
  • Clone
  • Fetch
When working on a separate branch, using git rebase allows the developer to incorporate updates made in the main branch and apply their changes on top, resulting in a cleaner commit history.
Add your answer
Loading...

Leave a comment

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