3
我正在爲我的Linux主目錄創建一個git存儲庫。我想忽略除白名單的文件/目錄以外的大部分內容。我有這樣的:.gitignore白名單中忽略的子目錄
# Ignore everything
*
# But not these files...
!.gitignore
!*/scripts/*
# the above line doesn't work, so this is a test:
!./scripts/*
但它忽略了我添加到scripts/
子目錄中的文件。我一直在用-f
添加東西,這是次優。
對這個問題的回答,Git Won't Un-Ignore a Directory,不適用於我。
Git 2.1.4版。