我想忽略除www目錄中的.htaccess文件以外的所有文件。讓.gitignore不要忽略頂級目錄中的.htaccess文件
我有這樣的:
# Ignore everything in this directory
*
# Except this file
!.gitignore
!/www/.htaccess
而且我也試過這樣:
# Ignore everything in this directory
*
# Except this file
!.gitignore
!www/.htaccess
當我運行git status
我沒有看到的.htaccess爲新添加的文件。我曾嘗試提交.gitignore文件。依然沒有。我錯過了明顯的東西,不是嗎?
更新
我也曾嘗試這些:
# Ignore everything in this directory
*
*/\.htaccess
# Except these files
!.gitignore
!www/\.htaccess
和
# Ignore everything in this directory
*
*/.htaccess
# Except these files
!.gitignore
!www/.htaccess
試過。承諾.gitignore,仍然沒有看到.htaccess即將到來 – phirschybar