What is the purpose of branching and how many branching strategies can you apply?
Answer / Mohammad Naseem
Branching in Git allows developers to work on different features or bug fixes independently without affecting the main codebase. This enables parallel development, reducing potential conflicts and increasing productivity.nnThere are several branching strategies, including: nn1. Git Flown2. Feature Branchingn3. GitHub Flown4. Trunk-Based Development
| Is This Answer Correct ? | 0 Yes | 0 No |
How to create tag?
What is the function of ‘git rm’?
What is git bisect?
What is subgit and why is it used?
Why GIT better than Subversion?
How to rebase master in git?
How git instaweb is used?
How to squash or fixup commits?
Name a few Git repository hosting services
What is ‘head’ in git and how many heads can be created in a repository?
Tell me the difference between head, working tree and index, in git.
Why is it advisable to create an additional commit rather than amending an existing commit?