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)
Using sourceTree : tools -> option, choose Git tab -> Edit file 'global ignore list' -> remove line *.dll
-- maybe it can help --
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With