I have a folder foothat is included in gitignore:
- .gitignore (this contains 'foo')
- foo
*
*** bar
When I run git clean -for git clean -f -x, this does not delete the line (bar is a regular file).
Is there a way to tell git to clear inside ignored folders?
source
share