What is the common branching pattern in GIT?
Answer / Sachin Gupta
The most common Git branching strategy is Git Flow, which consists of a 'master' branch (or 'main') and feature branches for new development. When a feature is complete, it gets merged into 'develop', then into 'master'. This allows for stable development on the master branch while allowing multiple features to be worked on in parallel.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is git fork?
How to squash or fixup commits?
What is the difference between GIT and SVN?
Name a few git commands and explain their usage.
What is GIT stash?
What is another option for merging in git?
Explain the advantages of forking workflow?
Describe the branching strategies you have used.
Explain the uses of git commands?
In git, how would you return a commit that has just been pushed and made open?
What is ‘head’ in git?
What is the use of ‘git log’?