The team needs to integrate a project within another project while maintaining separate version control histories. Which Git feature is the most appropriate?

  • Subtree Merge
  • Cherry-pick
  • Rebase
  • Merge Commit
Subtree merge allows integrating an external project into another by merging in only the parts needed, maintaining separate histories. It's useful for combining projects without losing their individual version control contexts.
Add your answer
Loading...

Leave a comment

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