我的 .gitignore
文件似乎被 Git 忽略了 - .gitignore
文件可能会损坏吗?Git 期望哪种文件格式、语言环境或文化?
我的 .gitignore
文件:
# This is a comment
debug.log
nbproject/
git status
的输出结果:
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# debug.log
# nbproject/
nothing added to commit but untracked files present (use "git add" to track)
我希望 debug.log
和 nbproject/
不要出现在未跟踪文件列表中。
我应该从哪里开始解决这个问题?
.gitignore
文件使用ANSI
或UTF-8
编码。如果它使用像Unicode BOM
这样的其他编码方式,Git就可能无法读取该文件。 - ADTCecho "file" > .gitignore
命令,但是生成的文件采用 UCS-2 编码!请 @ADTC 帮忙解决。 - MarioDS