Transcript
00:00 Before we create a commit, we want to make sure that only files and changes that we intend to include are in the index or staged area. To remove the git status file from this commit, type git reset and the filename, git status.txt.
00:17 Running git status again, we see that only these two files are staged for commit, and this file remains untracked. Git reset is the logical opposite of git add, meaning we can use . to reset all of the files.