In secure Git practices, a _______ branch strategy involves using separate branches for development and production.

  • feature
  • release
  • topic
  • gitflow
The correct option is topic. In a secure Git branching strategy, using separate branches for development and production is commonly known as the "topic branch" strategy. Each feature or bug fix is developed in a topic branch before being merged into the main branches. This helps maintain a clean and stable main branch for production releases.
Add your answer
Loading...

Leave a comment

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