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 |
Explain git stash, pop?
What is the difference between the ‘git diff ’and ‘git status’?
What does a commit object contain?
In git how do you revert a commit that has already been pushed and made public?
How to remove a file from git without removing it from your file system?
What are the advantages of using GIT?
What is ‘git status’ is used for?
What is the function of ‘git diff ’ in git?
What is git bisect and what is its purpose?
What language is used in GIT?
What is git reflog?
Why is it advisable to create an additional commit rather than amending an existing commit?