Home > Net >  How to gitignore this "test-output" folder?
How to gitignore this "test-output" folder?

Time:01-08

I edited the gitignore so i can ignore both "test-output" folder and also classes.html inside that folder:

enter image description here

As I see its not working. So how to do this?

CodePudding user response:

You shouldn't have the leading / in the path:

ID/test-output
  • Related