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 the function of ‘git reset’?
What is the difference between GIT and SVN?
Why is it advisable to create an additional commit rather than amending an existing commit?
What are the advantages of using GIT?
Why git and not svn?
Mention some of the best graphical GIT client for LINUX?
Explain the uses of git commands?
How git instaweb is used?
What is difference between fork and branch? How to create tag?
What is the function of git clone?
What is ‘head’ in git?
What is a distributed vcs?