Answer Posted / Subhash Chandra
Some common branching strategies used in DevOps include Git Flow, Feature Branch, and Forking. Git Flow involves creating a 'develop' branch for new features and bug fixes, and a separate 'master' branch for production releases. The Feature Branch strategy involves creating a separate branch for each feature or bug fix, which is then merged back into the 'develop' or 'master' branch after completion. Forking involves creating independent copies of a project in order to develop new features without affecting the original codebase.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers