+1 vote
in Git by
How does the Centralized Workflow work?

1 Answer

0 votes
by

The Centralized Workflow uses a central repository to serve as the single point-of-entry for all changes to the project. The default development branch is called master and all changes are committed into this branch.

Developers start by cloning the central repository. In their own local copies of the project, they edit files and commit changes. These new commits are stored locally.

To publish changes to the official project, developers push their local master branch to the central repository. Before the developer can publish their feature, they need to fetch the updated central commits and rebase their changes on top of them.

Compared to other workflows, the Centralized Workflow has no defined pull request or forking patterns.

Related questions

+1 vote
asked Jul 25, 2019 in Git by SakshiSharma
0 votes
asked Oct 26, 2020 in Git by AdilsonLima
...