Skip to content

Commit 7ca6f55

Browse files
committed
Fix issue #553: Git does the checkout while cloning, not "you".
1 parent 6054c33 commit 7ca6f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You need to make some changes and commit snapshots of those changes into your re
66
Remember that each file in your working directory can be in one of two states: tracked or untracked.
77
Tracked files are files that were in the last snapshot; they can be unmodified, modified, or staged.
88
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.
9-
When you first clone a repository, all of your files will be tracked and unmodified because you just checked them out and haven't edited anything.
9+
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.
1010

1111
As you edit files, Git sees them as modified, because you've changed them since your last commit.
1212
You stage these modified files and then commit all your staged changes, and the cycle repeats.

0 commit comments

Comments
 (0)