...

/

Git Workflows, Tools, and Uses

Git Workflows, Tools, and Uses

Learn about Git's workflows, tools, and uses.

We'll cover the following...

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 SCMsource control management system is one of several workflows.

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:

  1. Open a task list, such as a kanban board.

  2. Pull a task off the ...