Would you be able to clarify the Gitflow process?

967    Asked by VanessaMarshall in Python , Asked on Jan 9, 2020
Answered by Vanessa Marshall

Gitflow work process utilizes two equal long-running branches to record the historical backdrop of the task, master and develop:

Master- is constantly fit to be released on LIVE, with everything completely tried and endorsed (production-ready).

Hotfix - Maintenance or "hotfix" branches are utilized to rapidly fix production releases. Hotfix branches are a great deal like release branches and feature branches except they're founded on master rather than develop.

Develop- is the branch to which all component branches are combined and where all tests are performed. Just when everything's been completely checked and fixed it very well may be merged to the master.

Feature- Each new element ought to dwell in its branch, which can be pushed to the develop branch as their parent one.



Your Answer

Interviews

Parent Categories