Git ignore sub folders忽略子文件夹

前端之家收集整理的这篇文章主要介绍了Git ignore sub folders忽略子文件夹前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Have you tried wildcards?

Solution/*/bin/Debug
Solution/*/bin/Release

With version 1.8.2 of git,you can also use the ** wildcard to match any level of subdirectories:

**/bin/Debug/
**/bin/Release/

参考资料:

猜你在找的Git相关文章