How do I publish all git branchs at once to my remote repository on github?

Asked

Viewed 30 times

2

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

Is there any way to send all the branchs at once?

1 answer

1


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

git push --all

--all Push all branchs (i.e. refs over refs/heads/); cannot be used with another <refspec>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.