A DevOps team is implementing a new feature across different environments (development, testing, production). What Git strategy should they adopt to ensure smooth transitions and tracking?

  • Feature Branches
  • Git Tags
  • Forking
  • Rebasing
The DevOps team should adopt the strategy of using feature branches. Feature branches allow developers to work on new features or fixes independently in isolation. This helps in smooth transitions across different environments by merging the feature branch into each environment as needed. It also facilitates tracking changes related to specific features.
Add your answer
Loading...

Leave a comment

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