Which branching strategy in Git involves creating new branches for each feature?
- Feature Branching
- GitFlow
- Trunk-Based Development
- Forking Workflow
Feature Branching is a strategy where a new branch is created for each feature or bug fix, allowing for isolated development and easy integration. It helps in parallelizing work and maintaining a clean project history.
Loading...
Related Quiz
- Which file in a Git repository typically contains a list of files to be ignored?
- A team automates their build process using Git. They notice that builds are triggered even for minor documentation changes. What Git feature can they use to prevent this?
- You're working on a feature in a separate branch and want to include recent changes from the main branch. What Git strategy should you use?
- What is an essential step in ensuring a smooth transition from a centralized VCS to Git?
- The git ________ command helps in isolating the commit that introduced a bug.