Skip to content

Commit e93922f

Browse files
committed
Restucture unintentionally silly run-on sentence.
1 parent bed6bd5 commit e93922f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/02-git-basics/sections/recording-changes.asc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ At this point, you should have a _bona fide_ Git repository on your local machin
44
Typically, you'll want to start making changes and committing snapshots of those changes into your repository each time the project reaches a state you want to record.
55

66
Remember that each file in your working directory can be in one of two states: _tracked_ or _untracked_.
7-
Tracked files are files that were in the last snapshot; they can be unmodified, modified, or staged; in short, tracked files are files that Git knows about.
7+
Tracked files are files that were in the last snapshot; they can be unmodified, modified, or staged.
8+
In short, tracked files are files that Git knows about.
89

910
Untracked files are everything else – any files in your working directory that were not in your last snapshot and are not in your staging area.
1011
When you first clone a repository, all of your files will be tracked and unmodified because Git just checked them out and you haven't edited anything.

0 commit comments

Comments
 (0)