.gitignore still includes the asp.net core wwwroot / lib directory

Before I even create my ASP.NET Core project, I first create a git repository and select the source gitignore template for VisualStudio. Then I added the line:

Wwwroot / Library /

After compiling and posting this change, I created an ASP.NET Core Web Application project using a standard web application template for starters, and it still shows the downloaded jquery and bootstrap files taken with the gazebo as modified files, ready to be perfect ? Is there any step that I am skipping here to prevent them from appearing as modified?

+4
source share
1

**/wwwroot/lib .gitignore.

+9

Source: https://habr.com/ru/post/1678055/


All Articles