Quick Start Git...login
Quick Start Git Tutorial
author:php.cn  update time:2022-04-11 13:44:34

Git workflow


In this chapter we will introduce you to the workflow of Git.

The general workflow is as follows:

  • Clone Git resources as the working directory.

  • Add or modify files on the cloned resource.

  • If others have modified it, you can update the resource.

  • View changes before submitting.

  • Submit changes.

  • After the modification is completed, if an error is found, you can withdraw the submission and modify and submit again.

The following figure shows the Git workflow:

php.cn