Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can you explain the gitflow workflow?



Can you explain the gitflow workflow?..

Answer / Kumar Alok Rajan

The GitFlow workflow is a popular branching model for managing Git repositories in a collaborative environment. It consists of several branches: master, develop, feature, release, and hotfix. Here's how they are used:n- `master` branch represents the production code, and it should always be stable.n- `develop` branch is the main integration branch for new features. Developers work on this branch until their changes are ready to be deployed.n- `feature` branches are created from `develop` for implementing specific features or improvements.n- When a feature is complete, a `release` branch is created from `develop`, and all pending `feature` branches are merged into it.n- Once the release branch is tested, a `hotfix` branch is created to address any critical issues that might have arisen in production. The hotfix branch is then merged back into both `master` and `develop`.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Git Interview Questions

How to resolve a conflict in git?

1 Answers  


What is the function of ‘git rm’?

1 Answers  


What is a distributed vcs?

1 Answers  


Can you explain the gitflow workflow?

1 Answers  


What is git bisect and what is its purpose?

1 Answers  


What is a repository in GIT?

1 Answers  


Why git and not svn?

1 Answers  


What is the purpose of branching in GIT?

1 Answers  


What is difference between fork and branch?

1 Answers  


What is the function of ‘git reset’?

1 Answers  


What is the command you can use to write a commit message?

1 Answers  


What is the difference between GIT and SVN?

1 Answers  


Categories