What is the common branching pattern in GIT?



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

Post New Answer

More Git Interview Questions

Explain git stash, pop?

1 Answers  


What is the difference between the ‘git diff ’and ‘git status’?

1 Answers  


What does a commit object contain?

1 Answers  


In git how do you revert a commit that has already been pushed and made public?

1 Answers  


How to remove a file from git without removing it from your file system?

1 Answers  


What are the advantages of using GIT?

1 Answers  


What is ‘git status’ is used for?

1 Answers  


What is the function of ‘git diff ’ in git?

1 Answers  


What is git bisect and what is its purpose?

1 Answers  


What language is used in GIT?

1 Answers  


What is git reflog?

1 Answers  


Why is it advisable to create an additional commit rather than amending an existing commit?

1 Answers  


Categories