1.

Git WorkFlow

Answer»

The following image shows the git workflow diagram:

In Git, the workflow is mainly divided into three areas -



  • Working directory - This is the area where you modify your existing files.


  • Staging area (Index) - In this, the files in your working directory are staged and snapshots are added.


  • Git directory or repository - It is basically where you perform all the changes that need to be made i.e. perform commits to branch, checkout branch, make changes etc.




Discussion

No Comment Found