Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add dll files to Git Repository

I'm using bitbucket to host my git repository. I've added a new folder called ExtLibs and added bunch of dlls. However they do not show up in SourceTree when I try to check in those files.

How do I add a folder with (dll) files to repo?

I'm using .gitignore from here (c#/VS2013)

enter image description here

like image 355
BobSwanson Avatar asked May 09 '16 18:05

BobSwanson


2 Answers

Using sourceTree : tools -> option, choose Git tab -> Edit file 'global ignore list' -> remove line *.dll

-- maybe it can help --

like image 135
KhaNguyen Avatar answered Oct 14 '22 18:10

KhaNguyen


I can't find a (C#/VS2013) .gitignore in the link you posted. But I guess the file you are using has a section that tells to ignore all DLL-files:

Something like *.dll or **\*.dll

You have to remove that part from your file. Or you can add: !ExtLibs\*.dll if you want to just add the DLLs in the ExtLibs-folder.

like image 38
RomCoo Avatar answered Oct 14 '22 18:10

RomCoo