总是当我运行git status
一些文件被列为未跟踪时,它应该是这样的。但我不希望每次运行时都将它们列在那里git status
。据我了解,我应该将这些文件添加到.gitignore
-file 中。
在我的项目中,我有一个要导入的文件.classpath
和目录。.gradle/*
我的.gitignore
文件如下所示:
.classpath
.gradle/*
但是当我运行这些文件时,它们仍然被列为“未跟踪” git status
。我的文件有什么问题.gitignore
或者我应该如何解决这个问题?
这是我的git status
输出:
C:\myproject>git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: src/Test.java
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .classpath
# .gitignore
# .gradle/
no changes added to commit (use "git add" and/or "git commit -a")