我对.gitignore的更改不会导致git添加一些先前被忽略的文件
.gitignore有这个
!import/
import/*
!import/*.foo
跟踪除foo文件以外的所有文件。这很好用。但是,我希望现在跟踪import /中的所有文件,所以我评论了.gitignore的那些行。
我现在得到这个
craig@ubuntu-dev:<workspace>$ cd import
craig@ubuntu-dev:<workspace>/import$ git add .
craig@ubuntu-dev:<workspace>/import$ git commit -m "comment"
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
我是新手。我是否正确使用git或者是否有必须告诉它重新包含.gitignore或? 干杯
答案 0 :(得分:-1)
这可以通过明确告诉git导入这些来实现。 我认为git会继续跟踪它们。
git add import / *