Explain the gitflow workflow?
Answer / Mukesh Kumar Sinha
Gitflow is a branching model for Git. It includes four main branches: 'master', 'develop', feature branches (named according to their purpose), and maintenance branches (hotfixes and releases). The workflow goes as follows: new features are developed in feature branches, merged into develop, tested, then merged into master; bug fixes are done on hotfix branches which are also merged into develop and master; and releases are created from the 'master' branch.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between git vs svn
How can you fix a broken commit?
What is git fork? How to create tag?
Name a few git commands and explain their usage.
Tell me the difference between head, working tree and index, in git.
What is git cherry-pick?
What are git stash and git stash drop?
What is the difference between git pull and git fetch?
Explain the advantages of forking workflow?
How to rebase master in git?
Why is it desirable to create an additional commit rather than amending an existing commit?
How many heads can be created in a repository?