Disclaimer: I am a consultant at Amazon Web Services, and this is my personal blog. The opinions expressed here are solely mine and do not reflect the views of Amazon Web Services (AWS). Any statements made should not be considered official endorsements or statements by AWS.
Whenever Git
finds a new file inside the application folder, it is considered an Untracked File by Git
, because Git
doesn't know the file until we explicitly tell it about that file.
So, to let Git
know about the file, we stage
the file and commit
or push
it into the repository and make it a tracked file.
These Untracked Files are generated in two ways:
bin
and obj
folders are untracked files.node_modules
folder are untracked files.