Describe the branching strategies you have used.
Answer / Navin Kumr Mishra
I have used several branching strategies depending on the project requirements. Some common ones include:n1. Git Flow: This is a popular strategy that uses multiple branches (develop, feature, release, hotfix) to manage different aspects of a project.n2. Feature Branch Workflow: In this approach, each new feature or task is developed on its own branch and then merged into the main branch once completed.n3. GitHub Flow: This is similar to the Feature Branch Workflow but includes automated deployment when merging to the main branch.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is git fork? What is difference between fork and branch? How to create tag?
What is ‘head’ in git and how many heads can be created in a repository?
What is a “conflict” in git and how is it resolved?
How do you find a list of files that have changed in a particular commit?
Describe the branching strategies you have used.
What is git bisect? How can you use it to determine the source of a (regression) bug?
What work is restored when the deleted branch is recovered?
How will you know in GIT if a branch has been already merged into master?
What is git Is-tree?
How to revert previous commit in git?
What is the difference between GIT and SVN?
What is the command you can use to write a commit message?