I have added multiple folders to my .gitignore
files, but they still appear when I do git status
.
My installation/computer is new, and I'm trying to init a git repository inside a svn one.
As I've done hundreds of times before (not on this machine though), the folders marked as ignored (notably the .svn
folder at the root, and bin
and obj
inside src/www
) should not appear when doing git status
, and they should not be added when doing git add .
, but they do.
D:\DEV> more .gitignore
.svn/
[Bb]in/
[Oo]bj/
packages/D:\DEV> git status
On branch master
Untracked files:
(use "git add ..." to include in what will be committed).svn/ src/UI.Admin.Tests/obj/ src/packages/ src/www/bin/ src/www/obj/
nothing added to commit but untracked files present (use "git add" to track)