Quiz
Answer the following questions:
- What is branching in GitHub?
- Cutting off parts of your project
- Creating a copy of your project to work on separately
- Merging two projects into one
- Deleting old project files
Answer: B. Creating a copy of your project to work on separately.
- True or false: Branching is only used by advanced coders.
- True
- False
Answer: B. False.
- When you want to add a new feature to your project without affecting the main project, you create a new _________ in GitHub.
Answer: branch.
- Why is branching useful when collaborating on a project?
Answer: Branching allows multiple people to work on different parts of the project simultaneously without interfering with each other’s work.
- What can you do with a branch in a GitHub project?
- Share it with friends
- Merge it back into the main project
- Delete it after use
- All of the above
Answer: D. All of the above.
- True or false: Every branch in GitHub must be merged back into the main project.
- True
- False
Answer:...