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.
Loading...
Related Quiz
- What is the first step to start using Git after installation?
-
If you need to review the history of changes within a specific file, use git _______
. - Which Git command is used to create a copy of an existing repository on your local machine?
- Which Git command is used to download a repository from a remote server?
- A team wants to automatically test and deploy features as soon as they are pushed to a specific Git branch. Which CI/CD practice aligns with this?