Git life cycle

In this chapter, we will discuss Git's life cycle. And in the following chapter, we learn through Git commands for each activity.

In this chapter, we will discuss Git's life cycle. And in the following chapter, we learn through Git commands for each activity.

The general work process is as follows:

You clone Git repository as a working copy.

You edit the working copy by adding / editing files.

If necessary, you can update your working copy by making changes to other developers.

You review the changes before committing.

You commit the changes. If everything is good, then you push these changes to the repository.

After committing, if you realize something is wrong, then you can correct those commits and push these changes to the repository.

Below is a picture of the work progress:

Picture 1 of Git life cycle

According to Tutorialspoint

Last lesson: Git environment installation

Next lesson: Create activity in Git

You've just finished reading the article "Git life cycle" edited by the TipsMake team. You can save git-life-cycle.pdf to your computer here to read later or print it out. We hope this article has provided you with many useful tech tips and tricks. You can search for similar articles on tips and guides. Thank you for reading and for following us regularly.

« PREV Create activity in Git
NEXT » Git environment settings