Why my files(photos) are in untracked files?

2.7k views Asked by At

I added few photos to my project .png and .svg, and for some reason (not in ignore file) they are getting into the untracked files list.

Is this any reason for it? How Git chooses the files to untrack?

1

There are 1 answers

2
baddger964 On

You have to add a new file to your project, by default new file are untrack.

git add 'myfile'