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 |
Explain the advantages of forking workflow?
What is a repository and how will you create it?
Explain the gitflow workflow?
What is the function of ‘git reset’?
Why GIT better than Subversion?
What is subgit?
What are the different ways you can refer to a commit?
What does ‘hooks’ comprise of in git?
How can you create a repository in Git?
What is git cherry-pick?
Explain the difference between rebase and merge?
How to squash or fixup commits?