Describe the role of 'feature branches' in Git's branching model.
- Long-lived branches for ongoing features
- Temporary branches for hotfixes
- Branches for experimental changes
- Short-lived branches for documentation
'Feature branches' are long-lived branches created for ongoing features or tasks. They allow developers to work on features independently and then integrate them back into the main branch when ready. This promotes a clean and organized development process.
Loading...
Related Quiz
- Which command is used to create a new Git repository?
- How does the 'pre-receive' Git Hook differ from the 'post-receive' Hook?
- In CI/CD, the practice of automatically deploying all code changes to a _________ environment is common.
- In distributed teams, the git _______ command is crucial for ensuring changes are synchronized without overwriting others' work.
- To ignore file changes in your working directory, you should update the _________ file in your Git repository.