Skip to content

Commit 571f465

Browse files
committed
Fix some typos in an old git TIL
1 parent a547b9c commit 571f465

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

git/add-only-tracked-files-from-a-directory.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ test runs. Most of these files are tracked (already checked in to the
99
repository). There are also many new files generated as part of the most recent
1010
test run.
1111

12-
I want to staging the changes to files that are already tracked, but hold off
13-
on doing anything with the new files.
12+
I want to stage the changes to files that are already tracked, but hold off on
13+
doing anything with the new files.
1414

15-
Running `git add spec/cassettes` won't do the track because that will pull in
15+
Running `git add spec/cassettes` won't do the trick because that will pull in
1616
everything. Running `git add --patch spec/cassettes` will take long and be
1717
tedious. Instead what I want is the `-u` flag. It's short for _update_ which
1818
means it will only stage already tracked files.

0 commit comments

Comments
 (0)