Anyone know if it is possible to ignore all the instances of a particular directory in a file structure managed by git.
I\'m looking to exclude all the \'target\' f
I ignore all classes residing in target folder from git. add following line in open .gitignore file:
/.class
OR
*/target/**
It is working perfectly for me. try it.