Mark 909
Mark 909

Reputation: 1835

Commit Ignored Files in GIT using Visual Studio

I'm trying to Commmit some DLL files to Git using Visual Studio. I have excluded these files *.DLL using the Git ignore file but I'd still expect to be able to Stage and Commit them using the Commit diaglogue. The problem is that they don't appear in the dialogue even when I select the Show Ignored Files option.

Upvotes: 1

Views: 420

Answers (2)

Benny Emmers
Benny Emmers

Reputation: 40

Are the dlls already in your repository (from a previous commit) ? If so then delete the dlls first in your solution and then commit again (after you ignore file is ok).

Upvotes: 0

Dau
Dau

Reputation: 8848

type the name of ignored files manually, git will add these files and then commit

Upvotes: 2

Related Questions