gitbitbucketatlassian-sourcetreesourcetree

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


Solution

  • When you add new files to Git, you have to tell it to start tracking the new files. This can be done by using the git add command.

    In your case SourceTree should detect when new files are added. The new files will be shown in the "Unstaged files" pane. You can toggle the pane if you can't see it.

    enter image description here