I may be overthinking, but whenever something appears different, I try to get return it to the state it was. I ran ng new
in my terminal and created a new Angular Project. However, instead of the normal off-white colors in the explorer
I am receiving a multi-color file listing
When I hover over the (M) or (A) I receive a message saying (Modified) and (Index Added) respectively. I do not know what consequences this could have further down my project, and any help would be appreciated. I have search StackOverflow and all other sites for answers, but have e up empty!
I may be overthinking, but whenever something appears different, I try to get return it to the state it was. I ran ng new
in my terminal and created a new Angular Project. However, instead of the normal off-white colors in the explorer
I am receiving a multi-color file listing
When I hover over the (M) or (A) I receive a message saying (Modified) and (Index Added) respectively. I do not know what consequences this could have further down my project, and any help would be appreciated. I have search StackOverflow and all other sites for answers, but have e up empty!
Share Improve this question edited Dec 20, 2017 at 6:57 Suraj Rao 29.6k11 gold badges95 silver badges104 bronze badges asked Dec 20, 2017 at 6:53 Jake BradenJake Braden 4895 silver badges15 bronze badges 1-
1
those symbols are just the way to let you know the
git status
of the file, it won't have any effects on your project. – Dhyey Commented Dec 20, 2017 at 6:59
1 Answer
Reset to default 7It allows you to view git status of your project and was included in version 1.18 update.
If you want to disable it, go to File -> Preferences->settings. Set:
git.decorations.enabled:false
in your user/workspace settings.
It does not have any effect in your project itself.