git - gitignore file but not folder -
i have folder named format
*.*.*.*.log
i want ignore *.log files entry
*.log
in gitignore ignoring whole folder.
how ignore *.log files not *.log directories?
after digging found
/*.log
will trick.
Comments
Post a Comment