我創建了一個.gitignore來忽略一個名爲tola.txt的未跟蹤文件,現在當我做git status now tola.txt時,但.gitignore正在未跟蹤文件中。我有臨時移動一個入口.gitignore裏面.gitignore文件,但這只是一個黑客我相信,我怎麼能擺脫這個.gitignore混亂?如何忽略.gitignore文件?
root>$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# tola.txt
root>$ vim .gitignore
中的.gitignore添加tola.txt,但現在的.gitignore已成爲未跟蹤
root>$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .gitignore
如果你不添加'.gitignore',其他人都不會知道'tola.txt'應該被忽略,他們會意外地提交它。應該跟蹤'.gitignore'。 – 2012-02-26 09:35:13