Search⌘ K
AI Features

Different Git Workflows

Explore different Git workflows to understand how teams collaborate using Git. Learn about centralized, feature branch, Gitflow, and forking workflows and their advantages. This lesson helps you choose and use the right workflow for your projects with AWS CodeCommit integration.

What is a Git workflow?

Git workflows are unique ways that a team chooses to collaborate using Git. A team can use any of the following types of workflow:

  • Centralized workflow
  • Feature branch workflow
  • Gitflow workflow
  • Forking workflow

Centralized workflow

The centralized workflow is ideal for developers who are already used to centralized repositories like Apache Subversion (SVN) but still want to take advantage of the distributed power of Git.

To get started, developers clone the central repository to their local ...