I just created a new git repo at /
I created a new filetest.txt
in the folder test_fold
so that the path to the file is test_fold\test.txt
. I then run git status
. This is the output, it finds the folder but not the file. Why is not showing me that there is a new file in test_fold
?
$ git status
On branch master
Initial commit
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
test_fold/
nothing added to commit but untracked files present (use "git add" to track)
The .gitignore
file is blank.