I want ignore everything EXCEPT for one folder in my node_modules. So here is what I have put in my .gitignore:
!/node_modules/abc/*
/node_modules
Also tried:
!node_modules/abc/*
node_modules/*
But it is not working, as it is supposed to. This is making every folder inside node_modules getting ignored.
 
     
    