How would you use Git to track and manage experimental features separately from the main codebase?

  • Create a new branch for each feature
  • Use a separate repository for experimental features
  • Commit experimental features directly to the main branch
  • Tag experimental features
The correct option is a) Create a new branch for each feature. This allows you to isolate and track changes related to experimental features without affecting the main codebase. Options b, c, and d are not recommended for managing experimental features in Git.
Add your answer
Loading...

Leave a comment

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