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
最後のステートメントは、前のステートメントを「上書き」します。