You need to send a develop branch in which you are at the moment (Well, just a working version of the project!) In the wizard, an empty project (just a created project, clean).

Can I send a develop branch? what would that I throw off the link (git clone URL .............), clone those files that are in the deveop branch?

    1 answer 1

    Simply specify a branch in git clone, specifying the --single-branch flag:

     git clone --single-branch -b develop *url* 

    Without specifying the flag - --single-branch , git will download all the branches.

    • It works, thanks!!! - EugeneTM