How can I publish all the git branchs at once to my remote repository in github?

2

I have several branches that I created in my git (aula1, aula2, aula3) that are variations of the same index.html file, but when I go to github I can only send the master

Is there a way to send all the branches at once?

    
asked by anonymous 06.02.2018 / 11:39

1 answer

1

The ideal is to go into each branch to know what is being sent, but the simplest way is:

git push --all
  

- all   It pushes all branches (ie refs on refs / heads /); can not be used with other <refspec>

    
06.02.2018 / 11:43