Git Workflows, Tools, and Uses
Learn about Git's workflows, tools, and uses.
Workflow
A developer workflow is a set of steps required to accomplish a particular task. There are workflows for adding new code to a codebase, testing, code reviews, and other tasks. Managing work in an
Git supports a number of common workflows. One Git workflow, based on branching, is called a feature branch workflow. A typical day in the life of a developer using a feature branch workflow might look like the following:
A developer arrives at work, starting their day, and then they:
-
Open a task list, such as a kanban board.
-
Pull a task off the ...