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.
我不想忽略文件 node.exe
但忽略所有其他 .exe 文件,我该如何实现呢?
我的代码不起作用:
# Compiled source # ################### /build/* !node.exe *.exe *.o *.so *.com *.pdb *.ini
颠倒顺序:
!node.exe *.exe
到:
*.exe !node.exe
最后一个语句“覆盖”前一个语句。