@@ -82,23 +82,23 @@ Committed means that the data is safely stored in your local database.
8282Modified means that you have changed the file but have not committed it to your database yet.
8383Staged means that you have marked a modified file in its current version to go into your next commit snapshot.
8484
85- This leads us to the three main sections of a Git project: the Git directory, the working directory , and the staging area.
85+ This leads us to the three main sections of a Git project: the Git directory, the working tree , and the staging area.
8686
87- .Working directory , staging area, and Git directory.
88- image::images/areas.png["Working directory , staging area, and Git directory."]
87+ .Working tree , staging area, and Git directory.
88+ image::images/areas.png["Working tree , staging area, and Git directory."]
8989
9090The Git directory is where Git stores the metadata and object database for your project.
9191This is the most important part of Git, and it is what is copied when you clone a repository from another computer.
9292
93- The working directory is a single checkout of one version of the project.
93+ The working tree is a single checkout of one version of the project.
9494These files are pulled out of the compressed database in the Git directory and placed on disk for you to use or modify.
9595
9696The staging area is a file, generally contained in your Git directory, that stores information about what will go into your next commit.
9797It's sometimes referred to as the ``index'', but it's also common to refer to it as the staging area.
9898
9999The basic Git workflow goes something like this:
100100
101- 1. You modify files in your working directory .
101+ 1. You modify files in your working tree .
1021022. You stage the files, adding snapshots of them to your staging area.
1031033. You do a commit, which takes the files as they are in the staging area and stores that snapshot permanently to your Git directory.
104104
0 commit comments