Recursively add the entire folder to a repository

后端 未结 15 1392
野的像风
野的像风 2020-11-30 16:23

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

15条回答
  •  盖世英雄少女心
    2020-11-30 16:41

    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.

提交回复
热议问题