.gitignore文件在我的项目中不起作用

时间:2015-03-21 15:05:39

标签: git

我有一个名为&#34的项目;快捷方式",这是我的问题&步骤

cd shortcut
vim .gitignore 
git init
git add *
git status 

我仍然可以看到所有.exe文件和.pdb文件都在暂存中。我的git操作步骤有什么问题???

这是我的.gitignore文件

[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
*.exe
*.pdb
*.dll

1 个答案:

答案 0 :(得分:1)

我觉得你很困惑,虽然很难说清楚到底在哪里。请考虑以下事项:

$ mkdir shortcut
$ cd shortcut

$ touch foo
$ echo foo > .gitignore

$ git init
Initialized empty Git repository in ~/shortcut/.git/

$ git add *
The following paths are ignored by one of your .gitignore files:
foo
Use -f if you really want to add them.
fatal: no files added