I am trying to add a branch to the master branch on GitHub and push a folder onto that branch.
The folder structure of the branch looks like - SocialApp/SourceCode/D
I simply used this:
git add app/src/release/*
You simply need to specify the folder to add and then use * to add everything that is inside recursively.
*