Visual Studio has a new intellisence database file and when I ran git status
I found it
On branch master Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add ..." to include in what will be committed)
ServerSideCode.VC.db
Like its predecessor, *.sdf
, this can be added to .gitignore. I edited my .gitignore to include *.VC.db
. Now when I run git status
I see:
On branch master Your branch is up-to-date with 'origin/master'.
Untracked files:
(use "git add ..." to include in what will be committed)
ServerSideCode.VC.db
What additional step, beyond adding a file to the .gitignore file, do I need in order ro to remove the file from the list of untracked files returned by git status
?
(N.B. I realise that I could run git status -uno
but I want to know the additional step required to ignore new file types recently added to my .gitignore file.)