Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您有自动创建文件夹的软件,例如:
images/user1 images/user2 images/user3
我可以在 .gitignore 文件中放入什么以确保它们不存储在 repo 中?我努力了:
images/user*/ images/user*/.jpg images/user*
但这些都没有按预期工作。我不希望将任何动态创建的文件夹存储在 git 中。
谢谢!
试试images/user*/*?或者images/user**/*
images/user*/*
images/user**/*
确保你也错过了尾随空格