我试图忽略除 www 目录中的 .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