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?
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?
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>