How can I send a specific branch to Github through Git?
I am creating a project to learn how to use Gulp and its plugins, and in it I created a folder with the source code, called src
and a folder containing the minified files, CSS sheets processed and so on, called build
. I tried to create a branch in Git called deploy
and add only the build files in that branch and then make pull
to the repository, but I can not just send this folder.
In the various tests I've done, sometimes the whole project goes, with the folder src
, sometimes another remote branch is created in the repository ..
Do you have any such organizing tips for projects with task runners?